Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Achyuth4
/
LibreChat
like
0
Running
App
Files
Files
Community
main
LibreChat
/
pyserver
/
Dockerfile
N.Achyuth Reddy
Upload 683 files
9705b6c
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
161 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
server.py .
COPY
requirements.txt .
RUN
pip install -r requirements.txt
RUN
rm
requirements.txt
CMD
[
"python"
,
"server.py"
]