Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
yangtb24/sone
yangtb24
/
oai
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c088002
oai
/
Dockerfile
yangtb24
Create Dockerfile
cf2a013
verified
2 months ago
raw
Copy download link
history
blame
Safe
157 Bytes
FROM
python:
3.9
-slim-buster
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"gunicorn"
,
"app:app"
]