1 FROM python:3.10-alpine AS base
 
   3 RUN     apk update && apk add --no-cache \
 
   5 COPY requirements.txt requirements.txt
 
   6 RUN pip install --no-cache-dir -r requirements.txt
 
  13 RUN pip install --no-cache-dir coverage
 
  18 RUN pip install --no-cache-dir gunicorn psycopg2-binary