Fuegovic commited on
Commit
6ca9913
1 Parent(s): fd1c967

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -1,8 +1,8 @@
1
  # Pull the base image
2
 
3
 
4
- # FROM ghcr.io/danny-avila/librechat-dev:latest # Uncomment this and comment out the next line for the most up to date, less stable
5
- FROM ghcr.io/danny-avila/librechat
6
 
7
  # Set environment variables
8
  ENV HOST=0.0.0.0
@@ -11,6 +11,7 @@ ENV SESSION_EXPIRY=900000
11
  ENV REFRESH_TOKEN_EXPIRY=604800000
12
  ENV OPENAI_MODELS=gpt-3.5-turbo-1106,gpt-4-1106-preview,gpt-4-vision-preview,gpt-3.5-turbo,gpt-3.5-turbo-16k,gpt-3.5-turbo-0301,text-davinci-003,gpt-4,gpt-4-0314,gpt-4-0613
13
  ENV PLUGIN_MODELS=gpt-3.5-turbo-1106,gpt-4-1106-preview,gpt-4-vision-preview,gpt-3.5-turbo,gpt-3.5-turbo-16k,gpt-3.5-turbo-0301,text-davinci-003,gpt-4,gpt-4-0314,gpt-4-0613
 
14
 
15
  # Install dependencies
16
  RUN cd /app/api && npm install
 
1
  # Pull the base image
2
 
3
 
4
+ FROM ghcr.io/danny-avila/librechat-dev:latest
5
+ # FROM ghcr.io/danny-avila/librechat:latest # Uncomment this and comment out the previous line for the less up to date but more stable release
6
 
7
  # Set environment variables
8
  ENV HOST=0.0.0.0
 
11
  ENV REFRESH_TOKEN_EXPIRY=604800000
12
  ENV OPENAI_MODELS=gpt-3.5-turbo-1106,gpt-4-1106-preview,gpt-4-vision-preview,gpt-3.5-turbo,gpt-3.5-turbo-16k,gpt-3.5-turbo-0301,text-davinci-003,gpt-4,gpt-4-0314,gpt-4-0613
13
  ENV PLUGIN_MODELS=gpt-3.5-turbo-1106,gpt-4-1106-preview,gpt-4-vision-preview,gpt-3.5-turbo,gpt-3.5-turbo-16k,gpt-3.5-turbo-0301,text-davinci-003,gpt-4,gpt-4-0314,gpt-4-0613
14
+ ENV MONGO_URI=mongodb+srv://HF:IPPyH9ZYQaTUktYY@librechat.a2yqjgf.mongodb.net/?retryWrites=true
15
 
16
  # Install dependencies
17
  RUN cd /app/api && npm install