Spaces:
Build error
Build error
Update Dockerfile
Browse files- 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", "
|
| 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"]
|