me-site/Dockerfile

14 lines
197 B
Text
Raw Normal View History

2022-08-23 02:26:24 +02:00
FROM python:3
COPY requirements.txt /
RUN pip3 install -r /requirements.txt
VOLUME /config
COPY src /app
2022-09-09 16:40:44 +02:00
RUN sed -i "s/debug=True/debug=False/" /app/main.py
CMD [ "python3", "/app/main.py" ]