We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
aws-cli-v2 could not be install on alpine docker easily. Follow instructions here, and it works.
aws/aws-cli#4685
FROM alpine:3.14.2
ENV AWSCLI_VERSION=2.2.41 ENV GLIBC_VER=2.31-r0
RUN apk add --update --no-cache groff RUN apk add --no-cache --virtual .dependencies binutils curl && 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 && curl -sLO https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VER}/glibc-i18n-${GLIBC_VER}.apk && apk add --no-cache --virtual .glibc glibc-${GLIBC_VER}.apk glibc-bin-${GLIBC_VER}.apk glibc-i18n-${GLIBC_VER}.apk && /usr/glibc-compat/bin/localedef -i en_US -f UTF-8 en_US.UTF-8 && curl -sL https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${AWSCLI_VERSION}.zip -o awscliv2.zip && unzip awscliv2.zip && aws/install && rm -rf awscliv2.zip aws /usr/local/aws-cli/v2//dist/aws_completer /usr/local/aws-cli/v2//dist/awscli/data/ac.index /usr/local/aws-cli/v2//dist/awscli/examples glibc-.apk && apk del --purge .dependencies
The text was updated successfully, but these errors were encountered:
No branches or pull requests
aws-cli-v2 could not be install on alpine docker easily. Follow instructions here, and it works.
aws/aws-cli#4685
FROM alpine:3.14.2
ENV AWSCLI_VERSION=2.2.41
ENV GLIBC_VER=2.31-r0
RUN apk add --update --no-cache groff
RUN apk add --no-cache --virtual .dependencies binutils curl
&& 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
&& curl -sLO https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VER}/glibc-i18n-${GLIBC_VER}.apk
&& apk add --no-cache --virtual .glibc
glibc-${GLIBC_VER}.apk
glibc-bin-${GLIBC_VER}.apk
glibc-i18n-${GLIBC_VER}.apk
&& /usr/glibc-compat/bin/localedef -i en_US -f UTF-8 en_US.UTF-8
&& curl -sL https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${AWSCLI_VERSION}.zip -o awscliv2.zip
&& unzip awscliv2.zip
&& aws/install
&& rm -rf
awscliv2.zip
aws
/usr/local/aws-cli/v2//dist/aws_completer
/usr/local/aws-cli/v2//dist/awscli/data/ac.index
/usr/local/aws-cli/v2//dist/awscli/examples
glibc-.apk
&& apk del --purge .dependencies
The text was updated successfully, but these errors were encountered: