Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
habulaj
/
remove-bg-api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
add1294
remove-bg-api
/
Dockerfile
habulaj
Update Dockerfile
b5cd0d9
verified
2 months ago
raw
Copy download link
history
blame
Safe
187 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]