From 276974dbf63bcca8b66824bb9d50df609f76f822 Mon Sep 17 00:00:00 2001 From: jenkins-x-bot Date: Mon, 14 Sep 2020 10:40:02 +0800 Subject: [PATCH] Fixing missing file --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0f4bed8..acddca4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN apk update && \ pip3 install -r /data/requirements.txt && \ curl -L "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl" -o /usr/local/bin/kubetl && \ curl -L https://get.helm.sh/helm-v2.13.1-linux-amd64.tar.gz -o /tmp/helm-2.13.1.tgz && tar zxf /tmp/helm-2.13.1.tgz && \ - mv /linux-amd64/helm /usr/local/bin/helm-2.13.1 && chmod 755 /usr/local/bin/* && \ + cp /linux-amd64/helm /usr/local/bin/helm-2.13.1 && chmod 755 /usr/local/bin/* && \ rm -rf /tmp/src && rm -rf /var/cache/apk/* && rm -rf /linux-amd64 EXPOSE 3000