Skip to content

Commit dcb40d3

Browse files
authored
Merge pull request #1 from parsable/terraform
Terraform
2 parents 1c3e547 + 585ae35 commit dcb40d3

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Dockerfile

+9-1
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,18 @@ ENV KUBESEAL=0.12.5
3636
RUN echo "downloading kubeseal ${KUBESEAL}" && curl -sL https://github.com/bitnami-labs/sealed-secrets/releases/download/v${KUBESEAL}/kubeseal-linux-amd64 \
3737
-o /usr/local/bin/kubeseal && chmod +x /usr/local/bin/kubeseal && kubeseal --version
3838

39-
ENV KOPS=1.18.2
39+
ENV KOPS=1.20.1
4040
RUN curl -Lo kops https://github.com/kubernetes/kops/releases/download/v${KOPS}/kops-linux-amd64 \
4141
&& chmod +x ./kops && mv ./kops /usr/local/bin/ && kops version
4242

43+
ENV TERRAFORM=1.0.0
44+
RUN curl -Lo terraform.zip https://releases.hashicorp.com/terraform/${TERRAFORM}/terraform_${TERRAFORM}_linux_amd64.zip \
45+
&& unzip terraform.zip && chmod +x ./terraform && mv ./terraform /usr/local/bin/ && terraform version
46+
47+
ENV TERRAGRUNT=0.29.10
48+
RUN curl -Lo terragrunt https://github.com/gruntwork-io/terragrunt/releases/download/v${TERRAGRUNT}/terragrunt_linux_amd64\
49+
&& chmod +x ./terragrunt && mv ./terragrunt /usr/local/bin/
50+
4351
RUN echo "downloading yq" && curl -sL https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 \
4452
-o /usr/local/bin/yq && chmod +x /usr/local/bin/yq && yq --version
4553

0 commit comments

Comments
 (0)