Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
precison9
/
backend
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
backend
/
Dockerfile
precison9
add Dockerfile
5e487ae
1 day ago
raw
Copy download link
history
blame
contribute
delete
187 Bytes
FROM
python:
3.11
-slim
WORKDIR
/code
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"uvicorn"
,
"app.main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]