initial commmit
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal 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"]
|
Reference in New Issue
Block a user