asblr commited on
Commit
b41cee9
·
verified ·
1 Parent(s): c213ad0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile CHANGED
@@ -24,6 +24,12 @@ ENV MB_PORT=7860
24
  # Create directory for persistent data
25
  RUN mkdir -p /data
26
 
 
 
 
 
 
 
27
  # Expose the port Hugging Face Spaces expects
28
  EXPOSE 7860
29
 
 
24
  # Create directory for persistent data
25
  RUN mkdir -p /data
26
 
27
+ # Create plugins directory
28
+ RUN mkdir -p /app/plugins
29
+
30
+ # Ensure correct permissions
31
+ RUN chmod -R 777 /app/plugins
32
+
33
  # Expose the port Hugging Face Spaces expects
34
  EXPOSE 7860
35