Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
coollsd
/
download
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a441ebb
download
/
Dockerfile
coollsd
Update Dockerfile
d217056
verified
2 months ago
raw
Copy download link
history
blame
Safe
127 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
. .
RUN
pip install -r requirements.txt
CMD
[
"gunicorn"
,
"app:app"
,
"--bind"
,
"0.0.0.0:8080"
]