Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Heekyung
/
eef
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
eef
/
Dockerfile
Heekyung
Upload 71 files
8377658
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
167 Bytes
FROM
python:
3.7
WORKDIR
/app
COPY
. .
EXPOSE
7860
RUN
pip install --no-cache-dir -r requirements.txt
ENTRYPOINT
[
"python"
,
"-m"
,
"draggan.web"
,
"--ip"
,
"0.0.0.0"
]