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