Tmeena commited on
Commit
35d229f
1 Parent(s): 2109067

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -13,8 +13,8 @@ RUN pip install --no-cache-dir -r requirements.txt
13
  # Install ffmpeg for audio processing
14
  RUN apt-get update && apt-get install -y ffmpeg
15
 
16
- # Create the cache directory
17
- RUN mkdir -p /app/cache
18
 
19
  # Make port 7860 available to the world outside this container
20
  EXPOSE 7860
 
13
  # Install ffmpeg for audio processing
14
  RUN apt-get update && apt-get install -y ffmpeg
15
 
16
+ # Create cache directory with appropriate permissions
17
+ RUN mkdir -p /app/cache && chmod -R 777 /app/cache
18
 
19
  # Make port 7860 available to the world outside this container
20
  EXPOSE 7860