4n0s commited on
Commit
c2ecda6
·
verified ·
1 Parent(s): a3683d8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 FILENAME with -v1
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-v1.Q4_K_M.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='.')" && \
 
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='.')" && \