Spaces:
Runtime error
Runtime error
Commit
·
2500fa1
1
Parent(s):
490e8f8
test
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -17,5 +17,4 @@ ENV HF_HOME=/code/transformers_cache
|
|
17 |
|
18 |
COPY . .
|
19 |
|
20 |
-
|
21 |
-
CMD ["gunicorn", "main:app", "--workers", "1", "--worker-class", "uvicorn.workers.UvicornWorker", "--bind", "0.0.0.0:7860", "--timeout", "600"]
|
|
|
17 |
|
18 |
COPY . .
|
19 |
|
20 |
+
CMD ["gunicorn", "-b", "0.0.0.0:7860", "main:app", "--timeout", "600"]
|
|