Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Hmrishav/FlipSketch
fffiloni
/
FlipSketch
like
27
Paused
App
Files
Files
Community
55659e5
FlipSketch
/
Dockerfile
Hmrishav
resolve deps
259f45b
10 days ago
raw
Copy download link
history
blame
Safe
211 Bytes
FROM
python:
3.10
WORKDIR
/ code
COPY
/requirements.txt / code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r / code/requirements.txt
COPY
. .
CMD
[
"gunicorn"
,
"--bind"
,
"0.0.0.0:7860"
,
"app:app"
]