File size: 331 Bytes
ab2f69c
 
3b6afc0
998872b
15fa758
998872b
 
226a847
 
998872b
ab2f69c
 
3b6afc0
ab2f69c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Pull the base image
FROM ghcr.io/danny-avila/librechat:latest

# Set environment variables
ENV NODE_ENV=development
ENV HOST=0.0.0.0
ENV PORT=7860
ENV SESSION_EXPIRY=900000
ENV REFRESH_TOKEN_EXPIRY=604800000

# Install dependencies
RUN cd /app/api && npm install

# Command to run on container start
CMD ["npm", "run", "backend"]