Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
fffiloni/FlipSketch
Nymbo
/
FlipSketch
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0fbd488
FlipSketch
/
Dockerfile
Hmrishav
resolve deps
0fbd488
about 2 months ago
raw
Copy download link
history
blame
Safe
207 Bytes
FROM
python:
3.9
WORKDIR
/ code
COPY
/requirements.txt / code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r / code/requirements.txt
COPY
. .
CMD
[
"gunicorn"
,
"-b"
,
"0.0.0.0:5000"
,
"main:app"
]