gefdsv commited on
Commit
7809f5e
·
verified ·
1 Parent(s): 43ea255

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
- FROM ghcr.io/ggml-org/llama.cpp:full
2
 
3
  RUN apt update && apt install wget -y
4
 
5
- RUN wget "https://huggingface.co/unsloth/gemma-4-E2B-it-GGUF/resolve/main/gemma-4-E2B-it-Q3_K_S.gguf" -O /model.gguf
6
 
7
- CMD ["--server", "-m", "/model.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "1024", "--no-mmap", "--jinja", "--flash-attn", "on", "--temp", "1.0", "--top-p", "0.95", "--top-k", "64", "--reasoning-budget", "1024", "-c", "4096"]
 
1
+ FROM ghcr.io/ggml-org/llama.cpp:full-openvino
2
 
3
  RUN apt update && apt install wget -y
4
 
5
+ RUN wget "https://huggingface.co/unsloth/gemma-3-1b-it-GGUF/resolve/main/gemma-3-1b-it-Q4_K_S.gguf" -O /model.gguf
6
 
7
+ CMD ["--server", "-m", "/model.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "1024", "--no-mmap", "--jinja", "--flash-attn", "on", "--temp", "1.0", "--top-p", "0.95", "--top-k", "64", "--reasoning-budget", "256", "-c", "4096"]