SkyNetWalker commited on
Commit
2497a70
·
verified ·
1 Parent(s): 936cdc4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -16,8 +16,9 @@ WORKDIR /app
16
 
17
  # Define environment variables for the model repository and filename
18
  # This makes it easy to change the model later without editing the RUN command directly.
19
- ENV MODEL_REPO="unsloth/gemma-3-4b-it-qat-GGUF"
20
- ENV MODEL_FILENAME="gemma-3-4b-it-qat.Q4_K_M.gguf"
 
21
 
22
  # Download the specific GGUF model file directly from Hugging Face Hub.
23
  # We use 'wget -O' to save the file with the desired filename in the current directory.
 
16
 
17
  # Define environment variables for the model repository and filename
18
  # This makes it easy to change the model later without editing the RUN command directly.
19
+ ENV MODEL_REPO="unsloth/gemma-3-4b-it-GGUF"
20
+ # CORRECTED FILENAME: Removed '-qat'
21
+ ENV MODEL_FILENAME="gemma-3-4b-it.Q4_K_M.gguf"
22
 
23
  # Download the specific GGUF model file directly from Hugging Face Hub.
24
  # We use 'wget -O' to save the file with the desired filename in the current directory.