Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -9,4 +9,4 @@ COPY app/ .
|
|
9 |
|
10 |
EXPOSE 7860
|
11 |
|
12 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "main:app"]
|
|
|
9 |
|
10 |
EXPOSE 7860
|
11 |
|
12 |
+
CMD ["gunicorn", "--worker-class", "gevent", "--bind", "0.0.0.0:7860", "main:app"]
|