larxius commited on
Commit
838b031
·
verified ·
1 Parent(s): 4cab191

Fix: remove gevent websocket worker (crashes gunicorn), use default sync worker

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -44,5 +44,5 @@ ENV FLASK_ENV=production \
44
  EXPOSE 7860
45
 
46
  CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--workers", "1", \
47
- "--timeout", "300", "-k", "geventwebsocket.gunicorn.workers.GeventWebSocketWorker", \
48
  "app:app"]
 
44
  EXPOSE 7860
45
 
46
  CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--workers", "1", \
47
+ "--timeout", "300", \
48
  "app:app"]