feat: gunicorn timeout 120s

This commit is contained in:
Yandrik 2024-05-02 08:14:29 +02:00
parent 04b25cb803
commit 95f22c268b
2 changed files with 2 additions and 1 deletions

View File

@ -7,4 +7,4 @@ COPY . /app
RUN poetry install
ENTRYPOINT ["poetry", "run", "gunicorn", "wsgi:app", "--bind", "0.0.0.0:5000"]
ENTRYPOINT ["poetry", "run", "gunicorn", "-c", "gunicorn_config.py", "wsgi:app", "--bind", "0.0.0.0:5000"]

View File

@ -0,0 +1 @@
timeout = 120