Skip to content

Commit

Permalink
chore(build): Install Helm3 Binary to Rosco Container Image (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Sebastian committed Feb 20, 2020
1 parent 470bc5e commit 5da1ba0
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile.java8
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ RUN apk --no-cache add --update bash wget curl openssl openjdk8-jre && \

ENV PATH "/packer:$PATH"

# Install Helm 3
RUN wget https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get-helm-3 && \
chmod +x get-helm-3 && \
./get-helm-3 && \
rm get-helm-3 && \
mv /usr/local/bin/helm /usr/local/bin/helm3

# Install Helm 2
RUN wget https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get && \
chmod +x get && \
./get && \
Expand Down
8 changes: 8 additions & 0 deletions Dockerfile.slim
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ RUN apk --no-cache add --update bash wget curl openssl openjdk11-jre && \

ENV PATH "/packer:$PATH"

# Install Helm 3
RUN wget https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get-helm-3 && \
chmod +x get-helm-3 && \
./get-helm-3 && \
rm get-helm-3 && \
mv /usr/local/bin/helm /usr/local/bin/helm3

# Install Helm 2
RUN wget https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get && \
chmod +x get && \
./get && \
Expand Down
8 changes: 8 additions & 0 deletions Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ RUN apt-get update && apt-get -y install openjdk-11-jre-headless wget unzip curl

ENV PATH "/packer:$PATH"

# Install Helm 3
RUN wget https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get-helm-3 && \
chmod +x get-helm-3 && \
./get-helm-3 && \
rm get-helm-3 && \
mv /usr/local/bin/helm /usr/local/bin/helm3

# Install Helm 2
RUN wget https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get && \
chmod +x get && \
./get && \
Expand Down
8 changes: 8 additions & 0 deletions Dockerfile.ubuntu-java8
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ RUN apt-get update && apt-get -y install openjdk-8-jre-headless wget unzip curl

ENV PATH "/packer:$PATH"

# Install Helm 3
RUN wget https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get-helm-3 && \
chmod +x get-helm-3 && \
./get-helm-3 && \
rm get-helm-3 && \
mv /usr/local/bin/helm /usr/local/bin/helm3

# Install Helm 2
RUN wget https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get && \
chmod +x get && \
./get && \
Expand Down

0 comments on commit 5da1ba0

Please sign in to comment.