BankApi / Dockerfile
Salif SAWADOGO
CORRECT DOCKERFILE
1bbc65e
raw
history blame
114 Bytes
FROM python:3.9
COPY . /usr/app/
WORKDIR /usr/app/
RUN pip install --no-cache-dir -r requirements.txt
CMD main.py