Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -19,6 +19,9 @@ WORKDIR /app
|
|
19 |
# Create cache directory and set permissions
|
20 |
RUN mkdir -p /app/hf_cache && chmod -R 777 /app/hf_cache
|
21 |
|
|
|
|
|
|
|
22 |
# Clone Chain-of-Zoom repository (latest commit)
|
23 |
RUN git clone https://github.com/bryanswkim/Chain-of-Zoom.git .
|
24 |
|
|
|
19 |
# Create cache directory and set permissions
|
20 |
RUN mkdir -p /app/hf_cache && chmod -R 777 /app/hf_cache
|
21 |
|
22 |
+
# Set Hugging Face cache directory
|
23 |
+
ENV HF_HOME=/app/hf_cache
|
24 |
+
|
25 |
# Clone Chain-of-Zoom repository (latest commit)
|
26 |
RUN git clone https://github.com/bryanswkim/Chain-of-Zoom.git .
|
27 |
|