initial commmit

This commit is contained in:
2021-08-17 14:27:45 +02:00
commit 4e51fec5c6
5 changed files with 193 additions and 0 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
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"]