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