Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
axvg
/
pc1be
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
pc1be
/
Dockerfile
axvg
add dockerfile
78ebad8
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
181 Bytes
FROM
python:
3.13
-slim
WORKDIR
/app
COPY
pyproject.toml .
RUN
pip install .
COPY
. .
EXPOSE
8000
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"8000"
]