13 lines
347 B
Docker
13 lines
347 B
Docker
FROM python:latest
|
|
|
|
# Copy source files
|
|
RUN mkdir /root/tag-logger
|
|
COPY taglogger.py /root/tag-logger/taglogger.py
|
|
|
|
# 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
|
|
|
|
CMD ["python", "/root/tag-logger/taglogger.py"]
|