Spaces:
Runtime error
Runtime error
Fix v1.3.1: Dockerfile - Add wget, tar for HF Spaces compatibility
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -2,10 +2,12 @@ FROM python:3.10-slim
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
-
# Install system dependencies
|
| 6 |
RUN apt-get update && apt-get install -y \
|
|
|
|
| 7 |
curl \
|
| 8 |
git \
|
|
|
|
| 9 |
&& rm -rf /var/lib/apt/lists/*
|
| 10 |
|
| 11 |
# Copy requirements and install Python dependencies
|
|
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
+
# Install system dependencies including wget for HF Spaces compatibility
|
| 6 |
RUN apt-get update && apt-get install -y \
|
| 7 |
+
wget \
|
| 8 |
curl \
|
| 9 |
git \
|
| 10 |
+
tar \
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
|
| 13 |
# Copy requirements and install Python dependencies
|