Spaces:
Sleeping
Sleeping
Commit
·
0c52db4
1
Parent(s):
3c65b04
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -8,6 +8,7 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
8 |
|
9 |
COPY . .
|
10 |
|
11 |
-
CMD ["
|
|
|
12 |
|
13 |
|
|
|
8 |
|
9 |
COPY . .
|
10 |
|
11 |
+
CMD ["gunicorn", "-w", "4", "-k", "uvicorn.workers.UvicornWorker", "-b", "0.0.0.0:7860", "app:app"]
|
12 |
+
|
13 |
|
14 |
|