Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
aryadytm/remove-photo-background
rishi9440
/
remove-photo-background
like
3
Runtime error
App
Files
Files
Community
a16ac36
remove-photo-background
/
Dockerfile
rishi9440
Duplicate from aryadytm/remove-photo-background
da406d5
over 1 year ago
raw
Copy download link
history
blame
Safe
126 Bytes
FROM
pytorch/pytorch:latest
WORKDIR
/app
COPY
. .
RUN
pip install -r requirements.txt
CMD
[
"streamlit"
,
"run"
,
"app.py"
]