green-spider-indexer/Dockerfile

13 lines
221 B
Docker
Raw Normal View History

2020-04-03 19:42:36 +02:00
FROM python:3.7-buster
2019-04-11 22:34:14 +02:00
ENV PYTHONUNBUFFERED "yes"
2020-04-03 19:42:36 +02:00
ADD requirements.txt /requirements.txt
RUN pip install --upgrade pip && \
pip install -r /requirements.txt
2019-04-11 22:34:14 +02:00
COPY indexer.py /
ENTRYPOINT ["python", "/indexer.py"]