Dagriffpatchfan commited on
Commit
50f8f1f
·
verified ·
1 Parent(s): 07bce2a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -2,6 +2,8 @@ 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-3-270m-it-GGUF/resolve/main/gemma-3-270m-it-F16.gguf" -O /gemma-3-270m-it-F16.gguf
 
6
 
7
- CMD ["--server", "-m", "/gemma-3-270m-it-F16.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "512"]
 
 
2
 
3
  RUN apt update && apt install wget -y
4
 
5
+ # Change 1: Updated the URL and the output filename to the IQ2_XXS quant
6
+ RUN wget "https://huggingface.co/unsloth/gemma-3-270m-it-GGUF/resolve/main/gemma-3-270m-it-UD-IQ2_XXS.gguf" -O /gemma-3-270m-it-UD-IQ2_XXS.gguf
7
 
8
+ # Change 2: Updated the model path in the startup command
9
+ CMD ["--server", "-m", "/gemma-3-270m-it-UD-IQ2_XXS.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "512"]