green-spider/Dockerfile
2018-05-03 10:22:10 +02:00

11 lines
167 B
Docker

FROM python:3.6-alpine3.7
ADD requirements.txt /
RUN pip install -r requirements.txt
RUN apk add --no-cache git
ADD spider.py /
ENTRYPOINT ["python", "spider.py"]