ayush2917 commited on
Commit
f0f5c70
·
verified ·
1 Parent(s): 055511c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -29,7 +29,7 @@ RUN mkdir -p /app/data && \
29
 
30
  # Install Python dependencies
31
  COPY requirements.txt .
32
- RUN pip install --no-cache-dir -r requirements.txt gunicorn uvloop httptools
33
 
34
  # Copy application
35
  COPY . .
@@ -50,5 +50,5 @@ CMD ["gunicorn", \
50
  "--bind", "0.0.0.0:7860", \
51
  "--workers", "1", \
52
  "--worker-class", "uvicorn.workers.UvicornWorker", \
53
- "--timeout", "120", \
54
  "main:app"]
 
29
 
30
  # Install Python dependencies
31
  COPY requirements.txt .
32
+ RUN pip install --no-cache-dir -r requirements.txt gunicorn uvloop httptools beautifulsoup4 # Added beautifulsoup4
33
 
34
  # Copy application
35
  COPY . .
 
50
  "--bind", "0.0.0.0:7860", \
51
  "--workers", "1", \
52
  "--worker-class", "uvicorn.workers.UvicornWorker", \
53
+ "--timeout", "300", \
54
  "main:app"]