Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
monsterapi
/
RAG-Chat
like
2
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
61c9565
RAG-Chat
/
Dockerfile
Nitish-py
dockerfile
f61301c
over 1 year ago
raw
Copy download link
history
blame
Safe
141 Bytes
FROM
python:
3.11
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
CMD
[
"chainlit"
,
"run"
,
"app.py"
,
"--port"
,
"7860"
]