feat: gunicornのワーカータイムアウトを延長

This commit is contained in:
shimoda.m@nds-tyo.co.jp 2023-08-01 09:55:17 +09:00
parent 40eb6cdc2e
commit 1163951aad

View File

@ -16,4 +16,4 @@ RUN \
COPY src ./src
CMD ["gunicorn", "src.main:app", "-w", "4", "-k" ,"uvicorn.workers.UvicornWorker", "-b", "0.0.0.0:80"]
CMD ["gunicorn", "src.main:app", "-w", "4", "-k" ,"uvicorn.workers.UvicornWorker", "-b", "0.0.0.0:80", "--timeout", "300"]