Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
alanchen1115/ragline
alanchen1115
/
rag2line
like
0
Sleeping
App
Files
Files
Community
df7b5e5
rag2line
/
Dockerfile
alanchen1115
Update Dockerfile
8efacf7
verified
10 months ago
raw
Copy download link
history
blame
Safe
167 Bytes
FROM
python:
3.9
COPY
. .
WORKDIR
/
RUN
pip install --no-cache-dir --upgrade -r /requirements.txt
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]