Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kkk2z1
/
test_bbs
like
1
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
test_bbs
/
Dockerfile
kkk2z1
Update Dockerfile
b1f4a4c
verified
about 2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
187 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]