Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
HycJack/fastapi_rapidocr
deepak191z
/
fastapi-chat
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1cdc160
fastapi-chat
/
Dockerfile
HycJack
add file
1cdc160
about 1 year ago
raw
Copy download link
history
blame
Safe
226 Bytes
FROM
python:
3.10
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]