broadfield-dev commited on
Commit
8e3a1db
·
verified ·
1 Parent(s): 6ad9161

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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