Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
DIVY118
/
HomeAutomationR
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fac3b90
HomeAutomationR
/
Dockerfile
DIVY118
Upload Dockerfile
cbf896e
verified
9 months ago
raw
Copy download link
history
blame
Safe
149 Bytes
FROM
python:
3.12
WORKDIR
/code
RUN
pip install fastapi[all]
COPY
. .
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]