microblog.pub/Dockerfile
Thomas Sileo 8449ff0d6e Switch to python:3 for the Docker base image
In order to have the Python 3.7 upgrade automatically
2018-07-01 12:48:40 +02:00

7 lines
195 B
Docker

FROM python:3.7
ADD . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENV FLASK_APP=app.py
CMD ["gunicorn", "-t", "300", "-w", "2", "-b", "0.0.0.0:5005", "--log-level", "debug", "app:app"]