RaiSantos commited on
Commit
7e5741d
·
verified ·
1 Parent(s): 1525e15

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile CHANGED
@@ -33,5 +33,11 @@ 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"]
 
33
  # Install dependencies
34
  RUN cd /app/api && npm install
35
 
36
+ # Download BingAIClient.js
37
+ RUN curl -o /app/BingAIClient.js https://raw.githubusercontent.com/itzraiss/BingAI/refs/heads/main/src/BingAIClient.js
38
+
39
+ # Move to node_modules
40
+ RUN mv /app/BingAIClient.js /app/node_modules/nodejs-gpt/src/
41
+
42
  # Command to run on container start
43
  CMD ["npm", "run", "backend"]