yangtb24 commited on
Commit
f594d54
1 Parent(s): df341a2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -7,4 +7,4 @@ RUN pip install -r requirements.txt
7
 
8
  COPY . .
9
 
10
- CMD ["gunicorn", "app:app"]
 
7
 
8
  COPY . .
9
 
10
+ CMD ["gunicorn", "--log-level", "debug", "-k", "gevent", "-w", "4", "-b", "0.0.0.0:8000", "app:app"]