BankApi / Dockerfile
Salif SAWADOGO
'test'
030fb97
raw
history blame contribute delete
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"]