Skip to content

Commit e6ddcfa

Browse files
committed
Changed Gunicorn worker-class to Gevent
1 parent 696efc2 commit e6ddcfa

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ ADD . $APP_HOME
1616
EXPOSE 8000
1717
USER python
1818

19-
CMD ["gunicorn", "--worker-class", "eventlet", "--workers", "8", "--log-level", "INFO", "--bind", "0.0.0.0:8000", "project.wsgi"]
19+
CMD ["gunicorn", "--worker-class", "gevent", "--workers", "8", "--log-level", "INFO", "--bind", "0.0.0.0:8000", "project.wsgi"]

requirements-docker.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
-r requirements.txt
2-
eventlet==0.22.1
32
gevent==1.2.2
43
gunicorn==19.7.1

0 commit comments

Comments
 (0)