BankApi / Dockerfile
Salif SAWADOGO
CORRECT DOCKERFILE
603f361
raw
history blame
241 Bytes
FROM python:3.9
COPY . /usr/app/
WORKDIR /usr/app/
RUN pip install --no-cache-dir -r requirements.txt
#When you are building a docker image you want it to be light.
# This helps avoiding bloating the image with cached files
CMD main.py