Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sawadogosalif
/
BankApi
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
BankApi
/
Dockerfile
Salif SAWADOGO
'test'
030fb97
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
185 Bytes
FROM
python:
3.9
COPY
. /usr/app/
WORKDIR
/usr/app/
RUN
pip install --no-cache-dir -r requirements.txt
ENTRYPOINT
[
"gunicorn"
,
"main:application"
,
"-b"
,
"0.0.0.0:7860"
,
"--workers=1"
]