FROM python:latest # Install some python packages RUN pip install requests RUN pip install git+https://github.com/Henry-Pump/Pycomm-Helper.git RUN pip install git+https://github.com/ruscito/pycomm.git # Copy source files RUN mkdir /root/tag-logger COPY sampleData.py /root/tag-logger/taglogger.py CMD ["python", "-u", "/root/tag-logger/taglogger.py"]