Fetch and run get-helm script in two steps
[it/dep.git] / ci / Dockerfile
index bd60013..cd5ad00 100644 (file)
@@ -18,7 +18,9 @@
 
 FROM ubuntu:18.04
 RUN apt-get update && apt-get -y install curl
-RUN curl -L https://git.io/get_helm.sh | bash
+ARG GH=get_helm.sh
+RUN curl --silent --show-error -L https://git.io/${GH} -o ${GH}
+RUN bash ${GH}
 RUN helm init -c
 ARG TGT=/tmp/it-dep
 COPY . $TGT