storage-service-feeder/Dockerfile

15 lines
329 B
Docker
Raw Normal View History

2021-08-17 14:27:45 +02:00
FROM python:3.9
ENV PIP_NO_CACHE_DIR=true
ENV TZ Europe/Budapest
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
ADD requirements.txt /
RUN pip3 install -r /requirements.txt
ADD storage_service_feeder /storage_service_feeder/
WORKDIR /storage_service_feeder/
ENTRYPOINT ["python3", "main.py"]