Clawcod / Dockerfile
ubix's picture
Update Dockerfile
8244fa9 verified
Raw
History Blame Contribute Delete
449 Bytes
FROM ghcr.io/ggml-org/llama.cpp:full
RUN apt update && apt install wget -y
# Download the coding-specialized model
RUN wget "https://huggingface.co/unsloth/Qwen3.5-9B-GGUF/resolve/main/Qwen3.5-9B-Q4_K_M.gguf" -O /Qwen3.5-9B-Q4_K_M.gguf
CMD ["--server", \
"-m", "/Qwen3.5-9B-Q4_K_M.gguf", \
"--port", "7860", \
"--host", "0.0.0.0", \
"--ctx-size", "32768", \
"--n-predict", "-1", \
"--threads", "2", \
"--jinja"]