File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -34,15 +34,16 @@ RUN apt-get update && apt-get install --no-install-recommends -y gzip wget git j
3434 && curl -ksLO https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 && chmod 755 get-helm-3 \
3535 && ./get-helm-3 --version v$helm_version --no-sudo \
3636 # AWS
37- && curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${aws_cli_version}.zip" -o "awscliv2.zip" \
37+ && architecture=$(uname -m) \
38+ && curl "https://awscli.amazonaws.com/awscli-exe-linux-${architecture}-${aws_cli_version}.zip" -o "awscliv2.zip" \
3839 && unzip awscliv2.zip \
3940 && ./aws/install \
4041 # AZURE
4142 && curl -sL https://aka.ms/InstallAzureCLIDeb | bash \
4243 # GCP
4344 && echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list \
4445 && curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key --keyring /usr/share/keyrings/cloud.google.gpg add - \
45- && apt-get update && apt-get install --no-install-recommends -y google-cloud-cli:amd64 =${gcp_cli_version} \
46+ && apt-get update && apt-get install --no-install-recommends -y google-cloud-cli:* =${gcp_cli_version} \
4647 && apt-get install --no-install-recommends -y google-cloud-sdk-gke-gcloud-auth-plugin \
4748 && apt-get clean \
4849 && rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments