Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cINAWGD
/
yun4
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a9dedf0
yun4
/
Dockerfile
tuna2134
add: gunicorn使うようにした
76a257d
about 2 years ago
raw
Copy download link
history
blame
152 Bytes
FROM
python:
3
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"gunicorn"
,
"main:app"
,
"-b"
,
"0.0.0.0:8080"
]