Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -8,9 +8,9 @@ COPY . .
|
|
8 |
RUN pip install --no-cache-dir -r requirements.txt
|
9 |
|
10 |
# Create uploads directory and feedback.json with proper permissions
|
11 |
-
RUN mkdir -p static/uploads && \
|
12 |
touch feedback.json && \
|
13 |
-
chmod 777 static
|
14 |
chmod 666 feedback.json
|
15 |
|
16 |
# Run as non-root user for security
|
|
|
8 |
RUN pip install --no-cache-dir -r requirements.txt
|
9 |
|
10 |
# Create uploads directory and feedback.json with proper permissions
|
11 |
+
RUN mkdir -p static/uploads static/audio && \
|
12 |
touch feedback.json && \
|
13 |
+
chmod 777 static && \
|
14 |
chmod 666 feedback.json
|
15 |
|
16 |
# Run as non-root user for security
|