Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Niv03
/
rag-based-convo-chatbot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c1f8c6c
rag-based-convo-chatbot
/
Dockerfile
Niv03
Add docker file
c1f8c6c
3 months ago
raw
Copy download link
history
blame
Safe
114 Bytes
FROM
python
WORKDIR
app/
COPY
. app/
RUN
pip3 install -r requirements.txt
CMD
[
"streamlit"
,
"run"
,
"app.py"
]