Fuegovic commited on
Commit
b148ba3
1 Parent(s): c13d146

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -20,10 +20,12 @@ ENV MEILI_HTTP_ADDR=https://librechat-meilisearch.hf.space
20
  # Create necessary directories for vision
21
  RUN mkdir -p /app/client/public/images/temp
22
  RUN mkdir -p /app/api/logs/
 
23
 
24
  # Give write permission to the directory
25
  RUN chmod -R 777 /app/client/public/images
26
  RUN chmod -R 777 /app/api/logs/
 
27
 
28
  # Install dependencies
29
  RUN cd /app/api && npm install
 
20
  # Create necessary directories for vision
21
  RUN mkdir -p /app/client/public/images/temp
22
  RUN mkdir -p /app/api/logs/
23
+ RUN mkdir -p /app/data
24
 
25
  # Give write permission to the directory
26
  RUN chmod -R 777 /app/client/public/images
27
  RUN chmod -R 777 /app/api/logs/
28
+ RUN chmod -R 777 /app/data
29
 
30
  # Install dependencies
31
  RUN cd /app/api && npm install