stephendanielowen commited on
Commit
6de4762
·
verified ·
2 Parent(s): 3975153 40a83b6

Merge branch #LibreChat/LibreChat' into 'stephendanielowen/LibreChat'

Browse files
Files changed (2) hide show
  1. Dockerfile +3 -5
  2. README.md +1 -0
Dockerfile CHANGED
@@ -1,12 +1,10 @@
1
  # Pull the base image
2
  FROM ghcr.io/danny-avila/librechat-dev:latest
3
-
4
- # FROM ghcr.io/danny-avila/librechat-dev:0a1d38e3189a4f905d021be41ac2c8b5bd03d8b7
5
-
6
 
7
  # Set environment variables
8
  ENV HOST=0.0.0.0
9
- ENV PORT=7860
10
  ENV SESSION_EXPIRY=900000
11
  ENV REFRESH_TOKEN_EXPIRY=604800000
12
  ENV SEARCH=false
@@ -27,7 +25,7 @@ RUN chmod -R 777 /app/data
27
 
28
 
29
  # Copy Custom Endpoints Config
30
- # RUN curl -o /app/librechat.yaml https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/refs/heads/main/librechat-aio.yaml
31
  # COPY librechat.yaml /app/librechat.yaml # Uncomment this and comment out the previous line to use the local librechat.yaml
32
 
33
  # Install dependencies
 
1
  # Pull the base image
2
  FROM ghcr.io/danny-avila/librechat-dev:latest
3
+ EXPOSE 3080
 
 
4
 
5
  # Set environment variables
6
  ENV HOST=0.0.0.0
7
+ ENV PORT=3080
8
  ENV SESSION_EXPIRY=900000
9
  ENV REFRESH_TOKEN_EXPIRY=604800000
10
  ENV SEARCH=false
 
25
 
26
 
27
  # Copy Custom Endpoints Config
28
+ # RUN curl -o /app/librechat.yaml https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/main/librechat-up-l.yaml
29
  # COPY librechat.yaml /app/librechat.yaml # Uncomment this and comment out the previous line to use the local librechat.yaml
30
 
31
  # Install dependencies
README.md CHANGED
@@ -6,4 +6,5 @@ colorTo: blue
6
  sdk: docker
7
  pinned: true
8
  license: mit
 
9
  ---
 
6
  sdk: docker
7
  pinned: true
8
  license: mit
9
+ app_port: 3080
10
  ---