aesopnix commited on
Commit
0d02bcb
·
verified ·
1 Parent(s): 7880dbd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -15,7 +15,8 @@ WORKDIR $HOME/app
15
 
16
  COPY --chown=user:user Modelfile $HOME/app/
17
 
18
- RUN ollama pull deepseek-r1:1.5b-qwen-distill-q8_0 & sleep 5
19
- RUN ollama serve & sleep 5
 
20
 
21
  EXPOSE 11434
 
15
 
16
  COPY --chown=user:user Modelfile $HOME/app/
17
 
18
+ RUN curl -fsSL https://huggingface.co/unsloth/DeepSeek-R1-Distill-Qwen-1.5B-GGUF/resolve/main/DeepSeek-R1-Distill-Qwen-1.5B-Q8_0.gguf?download=true -o r1.gguf
19
+
20
+ RUN ollama serve & sleep 5 && ollama create r1 -f Modelfile
21
 
22
  EXPOSE 11434