You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This means that during the creation of the build, the wrong aws cli binary image is used for aarch64. When attempting to run the aws cli, you will receive errors such as
/lib64/ld-linux-x86-64.so.2: No such file or directory
The fix is to update the bootstrap.sh file as follows:
if [[ $(uname -p) == "aarch64" ]]; then
curl "https://awscli.amazonaws.com/awscli-exe-linux-aarch64.zip" -o $zip_file
else
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o $zip_file
fi
The text was updated successfully, but these errors were encountered:
The current bootstrap.sh has the following line:
This means that during the creation of the build, the wrong aws cli binary image is used for aarch64. When attempting to run the aws cli, you will receive errors such as
The fix is to update the bootstrap.sh file as follows:
The text was updated successfully, but these errors were encountered: