Spaces:
Running
Running
Update Dockerfile
Browse files- 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 |
-
|
|
|
6 |
|
7 |
-
|
|
|
|
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"]
|