4
0
This repository has been archived on 2020-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
extractor-service/Dockerfile
marcsello e11e6ffc3b
All checks were successful
continuous-integration/drone/push Build is passing
Added some basic stuff
2020-03-30 01:26:45 +02:00

13 lines
310 B
Docker

FROM python:3.8-slim
ADD extractor_service requirements.txt /extractor_service/
WORKDIR /extractor_service/
ENV PIP_NO_CACHE_DIR=true
ENV TZ Europe/Budapest
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3","main.py"]