ganna217 commited on
Commit
a5400c3
·
1 Parent(s): 5a2ce3f

Fix cache directory permissions in Dockerfile

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