diff --git a/Dockerfile b/Dockerfile index 2eccd80..8ecf2b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,7 +67,7 @@ RUN set -eux; \ helm version --short; # renovate: datasource=git-tags depName=https://github.com/opentofu/opentofu extractVersion=^v(?.+)$ -ARG TOFU_VERSION="1.11.7" +ARG TOFU_VERSION="1.12.0" RUN --mount=type=tmpfs,target=/root/.terraform.d set -eux; \ case "${TARGETPLATFORM}" in linux/amd64) ARCH="amd64";; linux/arm64) ARCH="arm64";; *) printf "Unsupported target platform [%s]\n"; exit 1;; esac; \ curl -fsSLo bundle.tar.gz "https://github.com/opentofu/opentofu/releases/download/v${TOFU_VERSION}/tofu_${TOFU_VERSION}_linux_${ARCH}.tar.gz"; \