Skip to content

Commit

Permalink
fix: update Terraform installation steps in e2e docker image
Browse files Browse the repository at this point in the history
- the terraform packages is not available anymore for alpine images
  due to the new license terms
  • Loading branch information
giovannibaratta committed Feb 8, 2024
1 parent 76a84f5 commit e3948ea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion e2e-tests/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
FROM bats/bats

RUN apk add --no-cache --update terraform
RUN wget https://releases.hashicorp.com/terraform/1.7.3/terraform_1.7.3_linux_amd64.zip && \
unzip terraform_1.7.3_linux_amd64.zip && \
mv terraform /usr/local/bin/ && \
rm terraform_1.7.3_linux_amd64.zip && \
chmod +x /usr/local/bin/terraform

0 comments on commit e3948ea

Please sign in to comment.