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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -16,6 +16,9 @@ RUN pip install --no-cache-dir --upgrade pip
16
  # Set working directory
17
  WORKDIR /app
18
 
 
 
 
19
  # Clone Chain-of-Zoom repository (latest commit)
20
  RUN git clone https://github.com/bryanswkim/Chain-of-Zoom.git .
21
 
 
16
  # Set working directory
17
  WORKDIR /app
18
 
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