Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -2,6 +2,6 @@ FROM ghcr.io/ggml-org/llama.cpp:full
|
|
| 2 |
|
| 3 |
RUN apt update && apt install wget -y
|
| 4 |
|
| 5 |
-
RUN wget "https://huggingface.co/lmstudio-community/Qwen3
|
| 6 |
|
| 7 |
-
CMD ["--server", "-m", "/
|
|
|
|
| 2 |
|
| 3 |
RUN apt update && apt install wget -y
|
| 4 |
|
| 5 |
+
RUN wget "https://huggingface.co/lmstudio-community/Qwen3.5-2B-GGUF/blob/main/Qwen3.5-2B-Q4_K_M.gguf" -O /model.gguf
|
| 6 |
|
| 7 |
+
CMD ["--server", "-m", "/model.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "512"]
|