fuegovic commited on
Commit
ab2f69c
1 Parent(s): 6c26694
Files changed (1) hide show
  1. Dockerfile +6 -4
Dockerfile CHANGED
@@ -1,6 +1,8 @@
1
- FROM chatgptclone/app:latest
 
2
 
3
- # Create the /.config directory and set permissions
4
- RUN chmod -R 777 ./data
5
 
6
- CMD ["npm", "run", "backend"]
 
 
1
+ # Pull the base image
2
+ FROM ghcr.io/danny-avila/librechat:latest
3
 
4
+ # Install dependencies
5
+ RUN cd /app/api && npm install
6
 
7
+ # Command to run on container start
8
+ CMD ["npm", "run", "backend"]