13 lines
197 B
Docker
13 lines
197 B
Docker
FROM python:3
|
|
|
|
COPY requirements.txt /
|
|
|
|
RUN pip3 install -r /requirements.txt
|
|
|
|
VOLUME /config
|
|
|
|
COPY src /app
|
|
|
|
RUN sed -i "s/debug=True/debug=False/" /app/main.py
|
|
|
|
CMD [ "python3", "/app/main.py" ]
|