Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
junaid17
/
testapi
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
testapi
/
Dockerfile
junaid17
Update Dockerfile
5c7c646
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
150 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
RUN
pip install fastapi uvicorn
COPY
app.py .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]