Have this Dockerfile
Dockerfile
FROM python:3.8 ADD Pipfile.lock /app/Pipfile.lock ADD Pipfile /app/Pipfile WORKDIR /app COPY . /app RUN pip install