LibreChat / Dockerfile
ASTAROTH0405's picture
Update Dockerfile
c847c3e verified
raw
history blame contribute delete
310 Bytes
# Pull the base image
FROM ghcr.io/danny-avila/librechat-dev:latest
# Set environment variables
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"]