Skip to content
New issue

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 with alpine image on docker #9

Open
davideuler opened this issue Apr 6, 2022 · 0 comments
Open

aws-cli-v2 with alpine image on docker #9

davideuler opened this issue Apr 6, 2022 · 0 comments

Comments

@davideuler
Copy link
Owner

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

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant