reikernx commited on
Commit
97eb6a3
·
verified ·
1 Parent(s): d5b0826

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -25,7 +25,8 @@ RUN pip install --no-cache-dir -r requirements.txt
25
 
26
  # Download GGUF model at build time (replace with your GitHub/HF link)
27
  RUN mkdir -p /app/model && \
28
- wget -O /app/model/model.gguf "https://github.com/<username>/<repo>/raw/main/model.gguf"
 
29
 
30
  # Expose port for Gradio
31
  EXPOSE 7860
 
25
 
26
  # Download GGUF model at build time (replace with your GitHub/HF link)
27
  RUN mkdir -p /app/model && \
28
+ wget -O /app/model/model.gguf \
29
+ "https://huggingface.co/Qwen/Qwen2.5-Coder-1.5B-Instruct-GGUF/resolve/main/qwen2.5-coder-1.5b-instruct-q4_k_m.gguf"
30
 
31
  # Expose port for Gradio
32
  EXPOSE 7860