Hugging Face
Models
Datasets
Spaces
Community
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...
1f8d218
rag-based-convo-chatbot
/
Dockerfile
Niv03
edit dockerfile
1f8d218
4 months ago
raw
Copy download link
history
blame
Safe
167 Bytes
FROM
python
WORKDIR
/app
COPY
. /app
RUN
pip install --trusted-host pypi.python.org -r requirements.txt
RUN
chmod
777 /.cache
CMD
[
"streamlit"
,
"run"
,
"app.py"
]