Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ZodiUOA
/
FNDCovid
like
0
Sleeping
App
Files
Files
Community
54bf840
FNDCovid
/
Dockerfile
ZodiUOA
test
54bf840
7 months ago
raw
Copy download link
history
blame
Safe
230 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"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]