RaiSantos commited on
Commit
f991760
1 Parent(s): 2201ab8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -24,7 +24,8 @@ RUN chmod -R 777 /app/uploads/temp
24
  RUN chmod -R 777 /app/client/public/images
25
  RUN chmod -R 777 /app/api/logs/
26
  RUN chmod -R 777 /app/data
27
-
 
28
 
29
  # Copy Custom Endpoints Config
30
  RUN curl -o /app/librechat.yaml https://raw.githubusercontent.com/itzraiss/config-yaml-librechat/main/librechat.yaml
@@ -33,5 +34,8 @@ RUN curl -o /app/librechat.yaml https://raw.githubusercontent.com/itzraiss/confi
33
  # Install dependencies
34
  RUN cd /app/api && npm install
35
 
 
 
 
36
  # Command to run on container start
37
  CMD ["npm", "run", "backend"]
 
24
  RUN chmod -R 777 /app/client/public/images
25
  RUN chmod -R 777 /app/api/logs/
26
  RUN chmod -R 777 /app/data
27
+ RUN chmod -R 777 /app/node_modules/nodejs-gpt/src/
28
+ RUN chmod -R 777 /app
29
 
30
  # Copy Custom Endpoints Config
31
  RUN curl -o /app/librechat.yaml https://raw.githubusercontent.com/itzraiss/config-yaml-librechat/main/librechat.yaml
 
34
  # Install dependencies
35
  RUN cd /app/api && npm install
36
 
37
+ # Install Update of BingAI (Copilot)
38
+ RUN curl -o /app/node_modules/nodejs-gpt/src/BingAIClient.js https://raw.githubusercontent.com/itzraiss/nodejs-gpt/refs/heads/main/src/BingAIClient.js
39
+
40
  # Command to run on container start
41
  CMD ["npm", "run", "backend"]