aliSaac510 commited on
Commit
f773d68
·
verified ·
1 Parent(s): 27114b7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]