Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -16,7 +16,7 @@ WORKDIR /app
|
|
16 |
# Install Python dependencies in correct order
|
17 |
RUN pip install --no-cache-dir --upgrade pip && \
|
18 |
# Install numpy<2 first for compatibility
|
19 |
-
pip install --no-cache-dir numpy && \
|
20 |
# Install PyTorch and other core dependencies
|
21 |
pip install --no-cache-dir \
|
22 |
torch==2.1.0 \
|
|
|
16 |
# Install Python dependencies in correct order
|
17 |
RUN pip install --no-cache-dir --upgrade pip && \
|
18 |
# Install numpy<2 first for compatibility
|
19 |
+
pip install --no-cache-dir 'numpy<2' && \
|
20 |
# Install PyTorch and other core dependencies
|
21 |
pip install --no-cache-dir \
|
22 |
torch==2.1.0 \
|