Zlovoblachko commited on
Commit
100d23c
·
1 Parent(s): b7fae20

Timeout fix attempt

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -10,4 +10,5 @@ RUN chown -R appuser:appuser /app
10
  USER appuser
11
  EXPOSE 7860
12
  CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--workers", "2", \
13
- "--timeout", "30", "--access-logfile", "-", "app:app"]
 
 
10
  USER appuser
11
  EXPOSE 7860
12
  CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--workers", "2", \
13
+ "--timeout", "60", "--graceful-timeout", "30", \
14
+ "--access-logfile", "-", "app:app"]