Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Bhushan26
/
wearon
like
1
Runtime error
App
Files
Files
Community
1
e867e15
wearon
/
Dockerfile
Bhushan26
new updated file
1bc88a1
verified
7 months ago
raw
Copy download link
history
blame
Safe
220 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"
]