Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -8,6 +8,9 @@ WORKDIR /app
|
|
| 8 |
COPY requirements.txt .
|
| 9 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 10 |
|
|
|
|
|
|
|
|
|
|
| 11 |
# Copy application files
|
| 12 |
COPY app.py .
|
| 13 |
COPY templates/ templates/
|
|
|
|
| 8 |
COPY requirements.txt .
|
| 9 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 10 |
|
| 11 |
+
# Clear pip cache to avoid conflicts
|
| 12 |
+
RUN pip cache purge
|
| 13 |
+
|
| 14 |
# Copy application files
|
| 15 |
COPY app.py .
|
| 16 |
COPY templates/ templates/
|