Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -2,10 +2,11 @@ FROM ghcr.io/ggml-org/llama.cpp:full
|
|
| 2 |
|
| 3 |
RUN apt update && apt install wget -y
|
| 4 |
|
| 5 |
-
|
|
|
|
| 6 |
|
| 7 |
CMD ["--server", \
|
| 8 |
-
"-m", "/
|
| 9 |
"--port", "7860", \
|
| 10 |
"--host", "0.0.0.0", \
|
| 11 |
"--ctx-size", "32768", \
|
|
|
|
| 2 |
|
| 3 |
RUN apt update && apt install wget -y
|
| 4 |
|
| 5 |
+
# Download the coding-specialized model
|
| 6 |
+
RUN wget "https://huggingface.co/Qwen/Qwen2.5-Coder-7B-Instruct-GGUF/resolve/main/qwen2.5-coder-7b-instruct-q4_k_m.gguf" -O /Qwen2.5-Coder-7B-Q4_K_M.gguf
|
| 7 |
|
| 8 |
CMD ["--server", \
|
| 9 |
+
"-m", "/Qwen2.5-Coder-7B-Q4_K_M.gguf", \
|
| 10 |
"--port", "7860", \
|
| 11 |
"--host", "0.0.0.0", \
|
| 12 |
"--ctx-size", "32768", \
|