Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -17,11 +17,11 @@ RUN pip install --no-cache-dir -U huggingface_hub
|
|
| 17 |
# モデルとmmprojをダウンロード
|
| 18 |
RUN python3 -c 'from huggingface_hub import hf_hub_download; \
|
| 19 |
repo="unsloth/Qwen3.6-27B-GGUF"; \
|
| 20 |
-
hf_hub_download(repo_id=repo, filename="Qwen3.6-27B-
|
| 21 |
hf_hub_download(repo_id=repo, filename="mmproj-BF16.gguf", local_dir="/app")'
|
| 22 |
|
| 23 |
CMD ["--server", \
|
| 24 |
-
"-m", "/app/Qwen3.6-27B-
|
| 25 |
"--mmproj", "/app/mmproj-BF16.gguf", \
|
| 26 |
"--host", "0.0.0.0", \
|
| 27 |
"--port", "7860", \
|
|
|
|
| 17 |
# モデルとmmprojをダウンロード
|
| 18 |
RUN python3 -c 'from huggingface_hub import hf_hub_download; \
|
| 19 |
repo="unsloth/Qwen3.6-27B-GGUF"; \
|
| 20 |
+
hf_hub_download(repo_id=repo, filename="Qwen3.6-27B-IQ4_NL.gguf", local_dir="/app"); \
|
| 21 |
hf_hub_download(repo_id=repo, filename="mmproj-BF16.gguf", local_dir="/app")'
|
| 22 |
|
| 23 |
CMD ["--server", \
|
| 24 |
+
"-m", "/app/Qwen3.6-27B-IQ4_NL.gguf", \
|
| 25 |
"--mmproj", "/app/mmproj-BF16.gguf", \
|
| 26 |
"--host", "0.0.0.0", \
|
| 27 |
"--port", "7860", \
|