Xlnk commited on
Commit
c200944
·
verified ·
1 Parent(s): 2fa9eec

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -20,12 +20,12 @@ RUN cmake -S llama.cpp -B llama.cpp/build \
20
 
21
  RUN mkdir -p /models
22
 
23
- # ✅ CORRECT MODEL DOWNLOAD
24
  RUN curl -L --fail -o /models/model.gguf \
25
  https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct-GGUF/resolve/main/qwen2.5-1.5b-instruct-q4_k_m.gguf
26
 
27
- # ✅ VERIFY GGUF
28
- RUN head -c 4 /models/model.gguf | xxd
29
 
30
  COPY start.sh /start.sh
31
  RUN chmod +x /start.sh
 
20
 
21
  RUN mkdir -p /models
22
 
23
+ # ✅ UNGATED MODEL
24
  RUN curl -L --fail -o /models/model.gguf \
25
  https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct-GGUF/resolve/main/qwen2.5-1.5b-instruct-q4_k_m.gguf
26
 
27
+ # ✅ GGUF sanity check (no xxd)
28
+ RUN head -c 4 /models/model.gguf
29
 
30
  COPY start.sh /start.sh
31
  RUN chmod +x /start.sh