Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sawadogosalif
/
BankApi
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abb63f7
BankApi
/
Dockerfile
Salif SAWADOGO
CORRECT DOCKERFILE
abb63f7
over 1 year ago
raw
Copy download link
history
blame
Safe
158 Bytes
FROM
python:
3.9
COPY
. /usr/app/
WORKDIR
/usr/app/
RUN
pip install --no-cache-dir -r requirements.txt
CMD
[
"gunicorn"
,
"--bind"
,
"0.0.0.0:7860"
,
"main:app"
]