Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sh-api
/
shapi
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
shapi
/
Dockerfile
sh20raj
API Init
14c36bc
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
153 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
. /app
RUN
pip install -r requirements.txt
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]