From 017c86514f5cf525bef127962b93dad9ac2cadb2 Mon Sep 17 00:00:00 2001 From: bunix42 Date: Fri, 27 Apr 2018 07:13:03 +0000 Subject: [PATCH] ARG must be after FROM for rest of Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1a2b776..85478d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -ARG HELM_VERSION=v2.9.0 - FROM alpine:3.6 MAINTAINER hanjo@bunix.de +ARG HELM_VERSION=v2.9.0 + RUN apk add --no-cache curl RUN curl https://storage.googleapis.com/kubernetes-helm/helm-$HELM_VERSION-linux-amd64.tar.gz --output helm-$HELM_VERSION-linux-amd64.tar.gz --silent && \