Koaris commited on
Commit
7773eb3
·
verified ·
1 Parent(s): c1e87ee

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -29,6 +29,8 @@ RUN curl -Ls https://astral.sh/uv/install.sh | bash && \
29
 
30
  # Install Hugging Face tools
31
  RUN pip install huggingface_hub
 
 
32
 
33
  # Preload model weights (optional but recommended)
34
  RUN python -c "from huggingface_hub import snapshot_download; snapshot_download('mistralai/Voxtral-Mini-3B-2507')"
 
29
 
30
  # Install Hugging Face tools
31
  RUN pip install huggingface_hub
32
+ COPY requirements.txt .
33
+ RUN pip install -r requirements.txt
34
 
35
  # Preload model weights (optional but recommended)
36
  RUN python -c "from huggingface_hub import snapshot_download; snapshot_download('mistralai/Voxtral-Mini-3B-2507')"