Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Goodsmileduck authored Apr 12, 2020
1 parent 9e03a64 commit 50de448
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ LABEL maintainer="Serebrennikov Stanislav <goodsmileduck@gmail.com>" \
org.label-schema.name="helm chart push" \
org.label-schema.vendor="Serebrennikov Stanislav" \
org.label-schema.schema-version="1.0"
ENV HELM_VERSION v2.6.1
ENV HELM_VERSION v3.2.1
ENV HELM_PLUGIN_PUSH_VERSION v0.7.1
ENV HELM_HOME=/root/.helm

RUN apk add curl tar bash
RUN set -ex \
&& curl -sSL https://storage.googleapis.com/kubernetes-helm/helm-${HELM_VERSION}-linux-amd64.tar.gz | tar xz \
&& curl -sSL https://get.helm.sh/helm-${HELM_VERSION}-linux-arm64.tar.gz | tar xz \
&& mv linux-amd64/helm /usr/local/bin/helm \
&& rm -rf linux-amd64 \
&& helm init --client-only
Expand All @@ -20,4 +20,4 @@ RUN apk add --virtual .helm-build-deps git make \
&& apk del --purge .helm-build-deps

COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 50de448

Please sign in to comment.