TechDev commited on
Commit
1fbb4fe
·
verified ·
1 Parent(s): 95bd32d

Upload 3 files

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -28,4 +28,4 @@ RUN sudo chmod -R 777 /app
28
  RUN python3 -m venv venv
29
  RUN /bin/bash -c "source venv/bin/activate && pip3 install -r requirements.txt"
30
 
31
- CMD [ "venv/bin/gunicorn","-b","0.0.0.0:7860", "app:app"]
 
28
  RUN python3 -m venv venv
29
  RUN /bin/bash -c "source venv/bin/activate && pip3 install -r requirements.txt"
30
 
31
+ CMD [ "venv/bin/gunicorn", "-k","eventlet","-w","1","-b","0.0.0.0:7860", "app:app"]