sandrocalzada commited on
Commit
ccfff67
·
verified ·
1 Parent(s): c585824

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- 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
 
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