Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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 |
|