Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -8,12 +8,12 @@ RUN pip install -U huggingface_hub
|
|
| 8 |
|
| 9 |
# モデルをHugging Faceからダウンロード
|
| 10 |
RUN python3 -c 'from huggingface_hub import hf_hub_download; \
|
| 11 |
-
repo="mradermacher/
|
| 12 |
-
hf_hub_download(repo_id=repo, filename="
|
| 13 |
|
| 14 |
# サーバーの設定
|
| 15 |
CMD ["--server", \
|
| 16 |
-
"-m", "/app/
|
| 17 |
"--host", "0.0.0.0", \
|
| 18 |
"--port", "7860", \
|
| 19 |
"-t", "2", \
|
|
|
|
| 8 |
|
| 9 |
# モデルをHugging Faceからダウンロード
|
| 10 |
RUN python3 -c 'from huggingface_hub import hf_hub_download; \
|
| 11 |
+
repo="mradermacher/Logic-Coder-7B-GGUF"; \
|
| 12 |
+
hf_hub_download(repo_id=repo, filename="Logic-Coder-7B.Q4_K_M.gguf", local_dir="/app")'
|
| 13 |
|
| 14 |
# サーバーの設定
|
| 15 |
CMD ["--server", \
|
| 16 |
+
"-m", "/app/Logic-Coder-7B.Q4_K_M.gguf", \
|
| 17 |
"--host", "0.0.0.0", \
|
| 18 |
"--port", "7860", \
|
| 19 |
"-t", "2", \
|