Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Junranl
/
rag-full
like
0
No application file
App
Files
Files
Community
main
rag-full
/
api
/
Dockerfile
Junranl
Upload folder using huggingface_hub
6e1a53e
verified
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
158 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt /app/
RUN
pip install -r requirements.txt
COPY
. /app
EXPOSE
8000
CMD
[
"python"
,
"-m"
,
"main"
]