Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -13,5 +13,5 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 13 |
# Make port 7860 available to the world outside this container
|
| 14 |
EXPOSE 7860
|
| 15 |
|
| 16 |
-
# Run main.py when the container launches
|
| 17 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "main:app"]
|
|
|
|
| 13 |
# Make port 7860 available to the world outside this container
|
| 14 |
EXPOSE 7860
|
| 15 |
|
| 16 |
+
# Run main.py when the container launches with an increased timeout
|
| 17 |
+
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--timeout", "300", "main:app"]
|