Spaces:
Sleeping
Sleeping
Fix cache directory permissions in Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -15,8 +15,8 @@ COPY . /app
|
|
15 |
# Install the required Python packages
|
16 |
RUN pip install --no-cache-dir -r requirements.txt
|
17 |
|
18 |
-
# Create the cache directory
|
19 |
-
RUN mkdir -p /tmp/hf_cache
|
20 |
|
21 |
# Expose the port that FastAPI will run on
|
22 |
EXPOSE 7860
|
|
|
15 |
# Install the required Python packages
|
16 |
RUN pip install --no-cache-dir -r requirements.txt
|
17 |
|
18 |
+
# Create the cache directory and set permissions
|
19 |
+
RUN mkdir -p /tmp/hf_cache && chmod -R 777 /tmp/hf_cache
|
20 |
|
21 |
# Expose the port that FastAPI will run on
|
22 |
EXPOSE 7860
|