FROM alpine RUN apk add --update --no-cache python3 py3-pip git WORKDIR /app COPY . . RUN python3 -m pip install --root-user-action=ignore --break-system-packages . CMD ["imagetools"]