Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +9 -7
Dockerfile
CHANGED
@@ -14,13 +14,15 @@ WORKDIR /app
|
|
14 |
# Install Python dependencies directly
|
15 |
RUN pip install --no-cache-dir --upgrade pip && \
|
16 |
pip install --no-cache-dir \
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
|
|
|
|
24 |
|
25 |
# Copy application files
|
26 |
COPY --chown=user . /app
|
|
|
14 |
# Install Python dependencies directly
|
15 |
RUN pip install --no-cache-dir --upgrade pip && \
|
16 |
pip install --no-cache-dir \
|
17 |
+
torch \
|
18 |
+
torchvision \
|
19 |
+
git+https://github.com/huggingface/transformers \
|
20 |
+
accelerate \
|
21 |
+
qwen-vl-utils[decord]==0.0.8 \
|
22 |
+
fastapi \
|
23 |
+
uvicorn[standard] \
|
24 |
+
python-multipart \
|
25 |
+
Pillow
|
26 |
|
27 |
# Copy application files
|
28 |
COPY --chown=user . /app
|