BankApi / Dockerfile
Salif SAWADOGO
CORRECT DOCKERFILE
abb63f7
raw
history blame
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"]