Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Jaykay73
/
test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
test
/
Dockerfile
Jaykay73
Create Dockerfile
04c5861
verified
5 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
139 Bytes
FROM
python:
3.11
-slim
RUN
pip install fastapi uvicorn
COPY
app.py /app.py
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]