forked from forks/microblog.pub
Increase gunicorn timeout (to help with the migration)
This commit is contained in:
parent
340d915599
commit
4e7fb005fa
1 changed files with 1 additions and 1 deletions
|
@ -3,4 +3,4 @@ ADD . /app
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
ENV FLASK_APP=app.py
|
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"]
|
||||||
|
|
Loading…
Reference in a new issue