Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -7,7 +7,7 @@ ENV PYTHONUNBUFFERED=1 \
|
|
| 7 |
PIP_DISABLE_PIP_VERSION_CHECK=on \
|
| 8 |
# Set path for Hugging Face model cache (inside the container)
|
| 9 |
HF_HOME="/app/huggingface_cache" \
|
| 10 |
-
TRANSFORMERS_CACHE="/app/huggingface_cache/transformers"
|
| 11 |
# If you need to use a Hugging Face token (e.g., for gated models, though Gemma isn't)
|
| 12 |
# HUGGING_FACE_HUB_TOKEN="your_hf_token_here" # Best to pass this at runtime or via secrets
|
| 13 |
|
|
|
|
| 7 |
PIP_DISABLE_PIP_VERSION_CHECK=on \
|
| 8 |
# Set path for Hugging Face model cache (inside the container)
|
| 9 |
HF_HOME="/app/huggingface_cache" \
|
| 10 |
+
TRANSFORMERS_CACHE="/app/huggingface_cache/transformers" # <-- REMOVED TRAILING BACKSLASH HERE
|
| 11 |
# If you need to use a Hugging Face token (e.g., for gated models, though Gemma isn't)
|
| 12 |
# HUGGING_FACE_HUB_TOKEN="your_hf_token_here" # Best to pass this at runtime or via secrets
|
| 13 |
|