Fuegovic commited on
Commit
998872b
1 Parent(s): 9c24539

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -1,6 +1,11 @@
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
 
 
1
  # Pull the base image
2
  FROM ghcr.io/danny-avila/librechat:latest
3
 
4
+
5
+ # Set environment variables
6
+ ENV HOST=0.0.0.0
7
+ ENV PORT=7860
8
+
9
  # Install dependencies
10
  RUN cd /app/api && npm install
11