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
9d62619
remove-photo-background
/
Dockerfile
rishi9440
Update Dockerfile
0a0a011
over 1 year ago
raw
Copy download link
history
blame
Safe
194 Bytes
FROM
pytorch/pytorch:latest
FROM
nginxinc/nginx-unprivileged:alpine
COPY
. /usr/share/nginx/html
WORKDIR
/app
COPY
. .
RUN
pip install -r requirements.txt
CMD
[
"streamlit"
,
"run"
,
"app.py"
]