Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
TypeGPT
/
Magic-Eraser-Tool
like
0
Running
App
Files
Files
Community
1
7657da7
Magic-Eraser-Tool
/
Dockerfile
Niansuh
Create Dockerfile
c233d32
verified
5 months 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"
]