FROM python:3-alpine RUN apk update && apk upgrade && apk add python3-pip COPY . . RUN pip install -r requirements.txt CMD make prod