Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
vortexa64
/
vps
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
vps
/
Dockerfile
vortexa64
Update Dockerfile
7b82efc
verified
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
161 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
. .
RUN
pip install fastapi uvicorn python-multipart
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]