Spaces:
Runtime error
Runtime error
Upload Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -29,4 +29,4 @@ RUN chmod 777 /app
|
|
29 |
|
30 |
|
31 |
# During debugging, this entry point will be overridden. For more information, please refer to https://aka.ms/vscode-docker-python-debug
|
32 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "-k", "uvicorn.workers.UvicornWorker", "main:app"]
|
|
|
29 |
|
30 |
|
31 |
# During debugging, this entry point will be overridden. For more information, please refer to https://aka.ms/vscode-docker-python-debug
|
32 |
+
CMD ["gunicorn","--workers=5", "--bind", "0.0.0.0:8000", "-k", "uvicorn.workers.UvicornWorker", "main:app", "--timeout", "120"]
|