How to get AWS-CLI v2 down from 127M to 67M

Take these steps: FROM alpine:3.12 # install glibc compatibility for alpine RUN apk –no-cache add binutils \ && echo “getting libc libraries” \ && curl -sL https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub -o /etc/apk/keys/sgerrand.rsa.pub \ && curl -sLO https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VER}/glibc-${GLIBC_VER}.apk \ && curl -sLO https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VER}/glibc-bin-${GLIBC_VER}.apk \ && echo “installing libc libraries” \ && apk add –no-cache \ glibc-${GLIBC_VER}.apk \ glibc-bin-${GLIBC_VER}.apk \ … Continue reading How to get AWS-CLI v2 down from 127M to 67M