Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
fcrespel committed Dec 1, 2024
1 parent 864b93b commit dc4d4c6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand All @@ -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

Expand All @@ -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 && \
Expand Down

0 comments on commit dc4d4c6

Please sign in to comment.