green-spider/Dockerfile

11 lines
167 B
Docker
Raw Normal View History

2018-05-03 08:54:05 +02:00
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"]