Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -19,9 +19,11 @@ ENV MEILI_HTTP_ADDR=https://librechat-meilisearch.hf.space
|
|
19 |
|
20 |
# Create necessary directories for vision
|
21 |
RUN mkdir -p /app/client/public/images/temp
|
|
|
22 |
|
23 |
# Give write permission to the directory
|
24 |
RUN chmod -R 777 /app/client/public/images
|
|
|
25 |
|
26 |
# Install dependencies
|
27 |
RUN cd /app/api && npm install
|
|
|
19 |
|
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
|