File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,9 @@ RUN apk add --no-cache \
25
25
# Terraform was disabled in the edge repo due to a build issue.
26
26
# https://gitlab.alpinelinux.org/alpine/aports/-/commit/f3e263d94cfac02d594bef83790c280e045eba35
27
27
# Using wget for now. Note that busybox unzip doesn't support streaming.
28
- RUN ARCH="$(arch)"; if [ "${ARCH}" == "x86_64" ]; then ARCH="amd64"; elif [ "${ARCH}" == "aarch64" ]; then ARCH="arm64"; fi; wget -O /tmp/terraform.zip "https://releases.hashicorp.com/terraform/1.5.6/terraform_1.5.6_linux_${ARCH}.zip" && \
28
+ #
29
+ # WARNING: Do not update to 1.6.x, as it is the first release licensed under BSL instead of MPL.
30
+ RUN ARCH="$(arch)"; if [ "${ARCH}" == "x86_64" ]; then ARCH="amd64"; elif [ "${ARCH}" == "aarch64" ]; then ARCH="arm64"; fi; wget -O /tmp/terraform.zip "https://releases.hashicorp.com/terraform/1.5.7/terraform_1.5.7_linux_${ARCH}.zip" && \
29
31
busybox unzip /tmp/terraform.zip -d /usr/local/bin && \
30
32
rm -f /tmp/terraform.zip && \
31
33
chmod +x /usr/local/bin/terraform && \
You can’t perform that action at this time.
0 commit comments