Skip to content

Commit

Permalink
Adding latest changes from main
Browse files Browse the repository at this point in the history
  • Loading branch information
ineiti committed Jan 5, 2024
1 parent bc6d91b commit 7e799c2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
node_modules
data-node
meili_data*
librechat*
Dockerfile*
# Ignore all hidden files
.*
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ FROM node:20-alpine AS node
COPY . /app
WORKDIR /app

# Allow mounting of these files, which have no default
# values.
RUN touch .env librechat.yaml
# Install call deps - Install curl for health check
RUN apk --no-cache add curl && \
# Build deps in seperate
npm ci
npm ci

# React client build
ENV NODE_OPTIONS="--max-old-space-size=2048"
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ services:
- MEILI_HTTP_ADDR=meilisearch:7700
volumes:
- ./.env:/app/.env
- ./librechat.yaml:/app/librechat.yaml
mongodb:
container_name: chat-mongodb
image: mongo
Expand Down

0 comments on commit 7e799c2

Please sign in to comment.