Increase gunicorn timeout (to help with the migration)

This commit is contained in:
Thomas Sileo 2018-07-01 11:04:57 +02:00
parent 340d915599
commit 4e7fb005fa

View file

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