Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -6
Dockerfile
CHANGED
@@ -27,12 +27,8 @@ RUN chmod -R 777 /app/data
|
|
27 |
|
28 |
|
29 |
# Copy Custom Endpoints Config
|
30 |
-
|
31 |
-
|
32 |
-
RUN --mount=type=secret,id=CONFIG_URL,mode=0444,required=true \
|
33 |
-
curl -o /app/librechat.yaml $(cat /run/secrets/CONFIG_URL)
|
34 |
-
RUN chmod 777 /app/librechat.yaml
|
35 |
-
user node
|
36 |
# Install dependencies
|
37 |
RUN cd /app/api && npm install
|
38 |
# Command to run on container start
|
|
|
27 |
|
28 |
|
29 |
# Copy Custom Endpoints Config
|
30 |
+
copy config.yaml /app/librechat.yaml
|
31 |
+
|
|
|
|
|
|
|
|
|
32 |
# Install dependencies
|
33 |
RUN cd /app/api && npm install
|
34 |
# Command to run on container start
|