martynka commited on
Commit
cc078c4
·
verified ·
1 Parent(s): 9212278

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -6
Dockerfile CHANGED
@@ -27,12 +27,8 @@ RUN chmod -R 777 /app/data
27
 
28
 
29
  # Copy Custom Endpoints Config
30
- user root
31
- RUN apk add curl
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