fix timeout

This commit is contained in:
Ugric
2026-01-30 05:45:27 +00:00
parent 8e69e293d0
commit 28402ecb31
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
COPY . /app
ENTRYPOINT ["gunicorn"]
CMD ["--bind","0.0.0.0:8000","main:app"]
CMD ["--bind","0.0.0.0:8000","main:app", " --timeout","120"]
FROM builder as dev-envs