Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
shrisdiablo
/
dev-yuvabe-app-api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bf6502c
dev-yuvabe-app-api
/
Dockerfile
Hp137
feat:Added leave/assets
66536b4
5 months ago
raw
Copy download link
history
blame
Safe
178 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
. .
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
7860
CMD
[
"uvicorn"
,
"src.main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]