Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
@@ -2,8 +2,8 @@ FROM ghcr.io/ggml-org/llama.cpp:full
|
|
2 |
|
3 |
RUN apt update && apt install wget -y
|
4 |
|
5 |
-
#
|
6 |
-
RUN wget "https://huggingface.co/unsloth/gemma-3-270m-it-GGUF/resolve/main/gemma-3-270m-it-
|
7 |
|
8 |
-
#
|
9 |
-
CMD ["--server", "-m", "/gemma-3-270m-it-
|
|
|
2 |
|
3 |
RUN apt update && apt install wget -y
|
4 |
|
5 |
+
# This line downloads the high-quality F16 model
|
6 |
+
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
|
7 |
|
8 |
+
# This command tells the server to load the F16 model on startup
|
9 |
+
CMD ["--server", "-m", "/gemma-3-270m-it-F16.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "512"]
|