Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -16,13 +16,13 @@ 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
|
20 |
# Install PyTorch and other core dependencies
|
21 |
pip install --no-cache-dir \
|
22 |
torch==2.1.0 \
|
23 |
torchvision==0.16.0 \
|
24 |
ninja \
|
25 |
-
|
26 |
accelerate \
|
27 |
qwen-vl-utils[decord]==0.0.8 \
|
28 |
fastapi \
|
|
|
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 \
|
23 |
torchvision==0.16.0 \
|
24 |
ninja \
|
25 |
+
transformers \
|
26 |
accelerate \
|
27 |
qwen-vl-utils[decord]==0.0.8 \
|
28 |
fastapi \
|