Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
LibreChat/LibreChat
reonjy
/
ai
like
0
Runtime error
App
Files
Files
Community
ab2f69c
ai
/
Dockerfile
fuegovic
LibreChat
ab2f69c
over 1 year ago
raw
Copy download link
history
blame
Safe
185 Bytes
# Pull the base image
FROM
ghcr.io/danny-avila/librechat:latest
# Install dependencies
RUN
cd
/app/api && npm install
# Command to run on container start
CMD
[
"npm"
,
"run"
,
"backend"
]