Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -2,7 +2,6 @@
|
|
2 |
|
3 |
|
4 |
FROM ghcr.io/danny-avila/librechat-dev:latest
|
5 |
-
# FROM ghcr.io/danny-avila/librechat:latest # Uncomment this and comment out the previous line for the less up to date but more stable release
|
6 |
|
7 |
# Set environment variables
|
8 |
ENV HOST=0.0.0.0
|
@@ -25,7 +24,8 @@ RUN chmod -R 777 /app/api/logs/
|
|
25 |
RUN chmod -R 777 /app/data
|
26 |
|
27 |
# Copy Custom Endpoints Config
|
28 |
-
|
|
|
29 |
|
30 |
# Install dependencies
|
31 |
RUN cd /app/api && npm install
|
|
|
2 |
|
3 |
|
4 |
FROM ghcr.io/danny-avila/librechat-dev:latest
|
|
|
5 |
|
6 |
# Set environment variables
|
7 |
ENV HOST=0.0.0.0
|
|
|
24 |
RUN chmod -R 777 /app/data
|
25 |
|
26 |
# Copy Custom Endpoints Config
|
27 |
+
RUN curl -o /app/librechat.yaml https://raw.githubusercontent.com/fuegovic/lc-config-yaml/main/librechat-firebase.yaml
|
28 |
+
# COPY librechat.yaml /app/librechat.yaml # Uncomment this and comment out the previous line to use the local librechat.yaml
|
29 |
|
30 |
# Install dependencies
|
31 |
RUN cd /app/api && npm install
|