Update Dockerfile
Browse files- 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
|
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
|