X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=helm-manager%2FDockerfile;h=a70af54f0363cb4e5011626275502f8d22c1f396;hb=refs%2Fchanges%2F47%2F6647%2F1;hp=2b1536f6f317a22e578fad28ef9d0a973e139116;hpb=eddcd8a5400ce8b4a3efbbd3a0d452ce6884d6db;p=nonrtric.git diff --git a/helm-manager/Dockerfile b/helm-manager/Dockerfile index 2b1536f6..a70af54f 100644 --- a/helm-manager/Dockerfile +++ b/helm-manager/Dockerfile @@ -19,8 +19,8 @@ FROM openjdk:11-jre-slim ARG JAR -#Install curl and wget -RUN apt-get upgrade && apt-get update && apt-get install -y curl wget +#Install wget +RUN apt-get update && apt-get install -y wget #Install helm RUN wget -O helm.tar.gz https://get.helm.sh/helm-v3.6.1-linux-amd64.tar.gz @@ -28,7 +28,7 @@ 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