FROM python:3.8.9 WORKDIR /app COPY . . RUN pip install --upgrade pip RUN pip install --no-cache-dir -r requirements.txt ENTRYPOINT python app.py