-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Alpine 3.20 release #8689
Comments
Hello 👋 seeing there's no |
I found a workaround for the missing awscli on alpine issue (tested on node-18:alpine). apk add --no-cache curl Then keep the environment deactivated, but reactivate the .environment whenever you need to use an aws command. Obviously use apk del on all the extra packages and rm -rf the .environment directory once you are done. I'm not sure if the curl, make, etc. are required, just adding python3 might work, but it's been a long day so I froze the script changes the first time I made it work - they were first added when I was trying to install and build the awscli apk. I needed venv because the alpine docker container was fussy about installing packages from sources other than the repository - but I'm not sure whether this applies to all containers. |
Alpine disabled aws-cli on 3.20 because of missing Python 3.12 compat (tracked at #8342). If you use |
Got it, thanks for the info 🙏 |
Thanks for reporting — as mentioned above, #8342 is the tracking issue for Python 3.12 support in v2. Some additional testing is still required for 3.12 but I've informed the team about this Alpine issue. |
For now I enabled aws-cli in Alpine v3.20 again with a couple of patches, but stable official Python 3.12 support would be great. |
hey @fossdd, that's great to hear! will there be any caveats if we use |
No, everything should work as intended. :) |
Please refer to the documentation to Build and install the AWS CLI from source for this use case. As noted there, Alpine Linux uses musl, but the current installers require FROM python:3.11-alpine3.20 AS builder
ENV AWSCLI_VERSION=2.17.21
RUN apk add --no-cache \
curl \
make \
cmake \
gcc \
g++ \
libc-dev \
libffi-dev \
openssl-dev \
&& curl https://awscli.amazonaws.com/awscli-${AWSCLI_VERSION}.tar.gz | tar -xz \
&& cd awscli-${AWSCLI_VERSION} \
&& ./configure --prefix=/opt/aws-cli/ --with-download-deps \
&& make \
&& make install
FROM python:3.11-alpine3.20
RUN apk --no-cache add groff
COPY --from=builder /opt/aws-cli/ /opt/aws-cli/
ENTRYPOINT ["/opt/aws-cli/bin/aws"] We advise caution on using any third-party installation distributions that are not officially maintained by AWS. Also we are continuing to track #8342 for Python 3.12 support on v2. |
This issue is now closed. Comments on closed issues are hard for our team to see. |
Describe the issue
Alpine 3.20 does not have a aws-cli release. 3.20 is now the latest release and many repositories use the
alpine:latest
docker image and will try to install aws-cli.Additional Information/Context
See description
CLI version used
N/A
Environment details (OS name and version, etc.)
alpine 3.20
The text was updated successfully, but these errors were encountered: