Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Raiff1982
/
Falcondette
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
97c5c0a
Falcondette
/
Dockerfile
Raiff1982
Create Dockerfile
d0acae4
verified
2 months ago
raw
Copy download link
history
blame
Safe
159 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r requirements.txt
CMD
[
"uvicorn"
,
"api:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"8000"
]