Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -13,7 +13,8 @@ RUN apt-get update && apt-get install -y \
|
|
| 13 |
|
| 14 |
# Copy requirements and install Python dependencies
|
| 15 |
COPY requirements.txt .
|
| 16 |
-
RUN pip install --no-cache-dir --user -r requirements.txt
|
|
|
|
| 17 |
|
| 18 |
# Production stage
|
| 19 |
FROM python:3.11-slim
|
|
|
|
| 13 |
|
| 14 |
# Copy requirements and install Python dependencies
|
| 15 |
COPY requirements.txt .
|
| 16 |
+
# RUN pip install --no-cache-dir --user -r requirements.txt
|
| 17 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 18 |
|
| 19 |
# Production stage
|
| 20 |
FROM python:3.11-slim
|