Skip to content
This repository has been archived by the owner on Mar 23, 2020. It is now read-only.

Commit

Permalink
Add terraform and helm push plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunk committed Apr 24, 2019
1 parent f137408 commit afe7731
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM devth/helm:v2.12.3

ENV TERRAFORM_VERSION=0.11.13

MAINTAINER USU Software AG

RUN apk --update add jq tzdata zip coreutils gnupg bash-completion && rm -rf /var/cache/apk/*
Expand All @@ -10,3 +12,9 @@ RUN echo "source <(kubectl completion bash)" >> ~/.bashrc

ADD ./jitcrypt /bin
RUN chmod u+x /bin/jitcrypt

RUN helm plugin install https://github.com/chartmuseum/helm-push

RUN wget https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /usr/local/bin && \
rm -f terraform_${TERRAFORM_VERSION}_linux_amd64.zip

0 comments on commit afe7731

Please sign in to comment.