Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -4,9 +4,9 @@ FROM ghcr.io/abetlen/llama-cpp-python:latest
|
|
| 4 |
# Install downloader
|
| 5 |
RUN pip install --no-cache-dir huggingface_hub
|
| 6 |
|
| 7 |
-
# CORRECT
|
| 8 |
ENV REPO_ID="tensorblock/WhiteRabbitNeo-2.5-Qwen-2.5-Coder-7B-GGUF"
|
| 9 |
-
ENV FILENAME="WhiteRabbitNeo-2.5-Qwen-2.5-Coder-7B-
|
| 10 |
|
| 11 |
# Runtime download and server start
|
| 12 |
CMD python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='$REPO_ID', filename='$FILENAME', local_dir='.')" && \
|
|
|
|
| 4 |
# Install downloader
|
| 5 |
RUN pip install --no-cache-dir huggingface_hub
|
| 6 |
|
| 7 |
+
# CORRECT REPO AND FILENAME - Verified
|
| 8 |
ENV REPO_ID="tensorblock/WhiteRabbitNeo-2.5-Qwen-2.5-Coder-7B-GGUF"
|
| 9 |
+
ENV FILENAME="WhiteRabbitNeo-2.5-Qwen-2.5-Coder-7B-Q2_K.gguf"
|
| 10 |
|
| 11 |
# Runtime download and server start
|
| 12 |
CMD python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='$REPO_ID', filename='$FILENAME', local_dir='.')" && \
|