X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=helm-manager%2FDockerfile;h=a70af54f0363cb4e5011626275502f8d22c1f396;hb=refs%2Fchanges%2F47%2F6647%2F1;hp=b9283c09fd82c67a562d3641412b461b5f8cc69e;hpb=31b09880413a8708a5ecfbd4ad83a91a01661892;p=nonrtric.git diff --git a/helm-manager/Dockerfile b/helm-manager/Dockerfile index b9283c09..a70af54f 100644 --- a/helm-manager/Dockerfile +++ b/helm-manager/Dockerfile @@ -19,17 +19,16 @@ FROM openjdk:11-jre-slim ARG JAR -#Install curl -RUN apt-get update -RUN apt-get install -y curl +#Install wget +RUN apt-get update && apt-get install -y wget #Install helm -RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 -RUN chmod 700 get_helm.sh -RUN ./get_helm.sh +RUN wget -O helm.tar.gz https://get.helm.sh/helm-v3.6.1-linux-amd64.tar.gz +RUN tar -zxvf helm.tar.gz +RUN mv linux-amd64/helm /usr/local/bin/helm #Install kubectl and configure -RUN curl -LO https://dl.k8s.io/release/v1.20.2/bin/linux/amd64/kubectl +RUN wget https://dl.k8s.io/release/v1.20.2/bin/linux/amd64/kubectl RUN chmod +x ./kubectl