Files
POC-to-ModbusTCP/poc_scraper/Dockerfile
Patrick McDonagh fa6d451f71 Dockerize everything
2017-05-23 12:38:03 -05:00

13 lines
346 B
Docker

FROM python:2.7
# Install some python packages
RUN pip install requests pymongo
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/poc_scraper
COPY poc_scraper /root/poc_scraper
CMD ["python", "-u", "/root/poc_scraper/__main__.py"]