ai / Dockerfile
Fuegovic's picture
Update Dockerfile
4a06766
raw
history blame
245 Bytes
# Pull the base image
FROM ghcr.io/danny-avila/librechat:latest
# Set environment variables
ENV HOST=0.0.0.0
ENV PORT=7860
# Install dependencies
RUN cd /app/api && npm install
# Command to run on container start
CMD ["npm", "run", "backend"]