13 lines
346 B
Docker
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"]
|