Skip to content

Commit d5ba23e

Browse files
committed
fixup! wget terraform directly from releases.hashicorp.com
1 parent e88073f commit d5ba23e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/Dockerfile.base

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ RUN apk add --no-cache \
2727
# Using wget for now. Note that busybox unzip doesn't support streaming.
2828
ARG ARCH
2929
RUN wget -O /tmp/terraform.zip "https://releases.hashicorp.com/terraform/1.5.6/terraform_1.5.6_linux_${ARCH}.zip" && \
30-
busybox unzip /tmp/terraform.zip -d / && \
31-
mv /terraform /usr/local/bin/terraform && \
30+
busybox unzip /tmp/terraform.zip -d /usr/local/bin && \
3231
rm -f /tmp/terraform.zip && \
3332
chmod +x /usr/local/bin/terraform && \
3433
terraform --version

0 commit comments

Comments
 (0)