Hugging Face
Models
Datasets
Spaces
Community
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...
b8737f0
remove-bg-api
/
Dockerfile
habulaj
Create Dockerfile
b8737f0
verified
5 months ago
raw
Copy download link
history
blame
Safe
201 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. /app
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]