vumichien commited on
Commit
fabebf7
·
1 Parent(s): c843383

change permision

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -19,6 +19,10 @@ COPY . .
19
  RUN mkdir -p static/uploads && \
20
  chmod -R 777 static/uploads
21
 
 
 
 
 
22
  # Set environment variables for Hugging Face
23
  ENV PYTHONUNBUFFERED=1
24
  ENV HOST=0.0.0.0
 
19
  RUN mkdir -p static/uploads && \
20
  chmod -R 777 static/uploads
21
 
22
+ # Create metadata directory with proper permissions
23
+ RUN mkdir -p static/metadata && \
24
+ chmod -R 777 static/metadata
25
+
26
  # Set environment variables for Hugging Face
27
  ENV PYTHONUNBUFFERED=1
28
  ENV HOST=0.0.0.0