We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e88073f commit d5ba23eCopy full SHA for d5ba23e
scripts/Dockerfile.base
@@ -27,8 +27,7 @@ RUN apk add --no-cache \
27
# Using wget for now. Note that busybox unzip doesn't support streaming.
28
ARG ARCH
29
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 && \
+ busybox unzip /tmp/terraform.zip -d /usr/local/bin && \
32
rm -f /tmp/terraform.zip && \
33
chmod +x /usr/local/bin/terraform && \
34
terraform --version
0 commit comments