Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -14,12 +14,11 @@ WORKDIR /app
|
|
| 14 |
# Install Python dependencies directly
|
| 15 |
RUN pip install --no-cache-dir --upgrade pip && \
|
| 16 |
pip install --no-cache-dir \
|
|
|
|
| 17 |
git+https://github.com/huggingface/transformers \
|
| 18 |
-
flash-attn \
|
| 19 |
qwen-vl-utils[decord]==0.0.8 \
|
| 20 |
fastapi \
|
| 21 |
uvicorn[standard] \
|
| 22 |
-
torch
|
| 23 |
|
| 24 |
# Copy application files
|
| 25 |
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 |
git+https://github.com/huggingface/transformers \
|
|
|
|
| 19 |
qwen-vl-utils[decord]==0.0.8 \
|
| 20 |
fastapi \
|
| 21 |
uvicorn[standard] \
|
|
|
|
| 22 |
|
| 23 |
# Copy application files
|
| 24 |
COPY --chown=user . /app
|