From 7ba4df1bc41134d696f575dfe8a17ec061ba621e Mon Sep 17 00:00:00 2001 From: Eric Paulsen Date: Fri, 14 Mar 2025 16:11:14 +0000 Subject: [PATCH] docs: fix offline dockerfile bug (#16923) bug caused via the `apk del terraform` line in our Dockerfile, which does not yet exist in the Alpine Linux OS. removing this line (18) results in successful builds. --- docs/install/offline.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/install/offline.md b/docs/install/offline.md index d836a5e8e3..fa976df79f 100644 --- a/docs/install/offline.md +++ b/docs/install/offline.md @@ -57,7 +57,6 @@ RUN mkdir -p /opt/terraform # for supported Terraform versions. ARG TERRAFORM_VERSION=1.11.0 RUN apk update && \ - apk del terraform && \ curl -LOs https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip \ && unzip -o terraform_${TERRAFORM_VERSION}_linux_amd64.zip \ && mv terraform /opt/terraform \