From dc4d4c6d58ab5cfe61cd7c35fce4027920a182c9 Mon Sep 17 00:00:00 2001 From: Fabien Crespel Date: Sun, 1 Dec 2024 21:57:58 +0100 Subject: [PATCH] Update versions --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4ae7206..2403c10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ ARG ROOT_CA_URL= RUN test -z "${ROOT_CA_URL}" || (curl -sSLf -O --output-dir /usr/local/share/ca-certificates "${ROOT_CA_URL}" && update-ca-certificates) # Download and install Google Cloud SDK -ARG CLOUDSDK_VERSION=494.0.0 +ARG CLOUDSDK_VERSION=502.0.0 RUN curl -sSLf -o /tmp/google-cloud-sdk.tar.gz "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-cli-${CLOUDSDK_VERSION}-linux-x86_64.tar.gz" && \ tar -xf /tmp/google-cloud-sdk.tar.gz -C /opt && \ rm -f /tmp/google-cloud-sdk.tar.gz && \ @@ -27,13 +27,13 @@ RUN curl -sSLf https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o / rm -rf /var/lib/apt/lists/* # Download and install Helm -ARG HELM_VERSION=3.16.1 +ARG HELM_VERSION=3.16.3 RUN curl -sSLf -o /tmp/helm.tar.gz "https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz" && \ tar -xf /tmp/helm.tar.gz -C /usr/local/bin --strip-components=1 linux-amd64/helm && \ rm -f /tmp/helm.tar.gz # Download and install kubectl -ARG KUBECTL_VERSION=1.31.1 +ARG KUBECTL_VERSION=1.31.3 RUN curl -sSLf -o /usr/local/bin/kubectl "https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl" && \ chmod +x /usr/local/bin/kubectl @@ -45,13 +45,13 @@ RUN curl -sSLf -o /tmp/maven.tar.gz "https://dlcdn.apache.org/maven/maven-3/${MA ln -s "/usr/local/share/apache-maven-${MAVEN_VERSION}/bin/mvn" /usr/local/bin/mvn # Download and install Terraform -ARG TF_VERSION=1.9.6 +ARG TF_VERSION=1.10.0 RUN curl -sSLf -o /tmp/terraform.zip "https://releases.hashicorp.com/terraform/${TF_VERSION}/terraform_${TF_VERSION}_linux_amd64.zip" && \ unzip /tmp/terraform.zip -d /usr/local/bin && \ rm -f /tmp/terraform.zip # Download and install VS Code CLI -ARG VSCODE_CLI_VERSION=1.93.1 +ARG VSCODE_CLI_VERSION=1.95.3 RUN VSCODE_CLI_URL=$(curl -sSLf "https://update.code.visualstudio.com/api/versions/${VSCODE_CLI_VERSION}/cli-alpine-x64/stable" | jq -r ".url") && \ curl -sSLf -o /tmp/vscode-cli.tar.gz "${VSCODE_CLI_URL}" && \ tar -xf /tmp/vscode-cli.tar.gz -C /usr/local/bin && \