Skip to content

Commit

Permalink
update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Constantin07 committed Oct 3, 2024
1 parent 076efe9 commit 74d099d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pipelines/dockerfiles/tool-box/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ RUN apk --no-cache add curl unzip

ARG INSTALL_DIR="/usr/local/bin"

ARG TERRAFORM_VERSION=1.9.5
ARG TERRAFORM_VERSION=1.9.7
ARG TERRAFORM_URL=https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip
ARG TERRAFORM_FILE=terraform_${TERRAFORM_VERSION}_linux_amd64.zip
ARG TERRAFORM_SHA256=9cf727b4d6bd2d4d2908f08bd282f9e4809d6c3071c3b8ebe53558bee6dc913b
ARG TERRAFORM_SHA256=76a77ed7e785ef354b7f565abaa990e3e7b5232d3ec4afb87e0f5a413fcbdad1

RUN set -exo pipefail; curl -fsSL --retry 3 -o ${TERRAFORM_FILE} ${TERRAFORM_URL}; \
sha256sum ${TERRAFORM_FILE} | grep ${TERRAFORM_SHA256}; \
unzip -d ${INSTALL_DIR} ${TERRAFORM_FILE}; \
chmod +x ${INSTALL_DIR}/terraform

ARG KUBECTL_VERSION=v1.30.4
ARG KUBECTL_VERSION=v1.30.5
ARG KUBECTL_URL=https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl
ARG KUBECTL_FILE=kubectl
ARG KUBECTL_SHA256=2ffd023712bbc1a9390dbd8c0c15201c165a69d394787ef03eda3eccb4b9ac06
ARG KUBECTL_SHA256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855

RUN set -exo pipefail; curl -fsSL --retry 3 -o ${KUBECTL_FILE} ${KUBECTL_URL}; \
sha256sum ${KUBECTL_FILE} | grep ${KUBECTL_SHA256}; \
Expand Down

0 comments on commit 74d099d

Please sign in to comment.