X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=ci%2Fxapp_onboarder%2FDockerfile;h=3f594c4e55196e2ec4f3b681fb851754af6cb67f;hb=cd47b67a1dfa471bddb6657311e379bddf342f11;hp=28a72b1f730aaea89d9e8ab62f22881f6977a98e;hpb=05ab2df6036c6340c89765636670b302da632f2c;p=it%2Fdev.git diff --git a/ci/xapp_onboarder/Dockerfile b/ci/xapp_onboarder/Dockerfile index 28a72b1..3f594c4 100644 --- a/ci/xapp_onboarder/Dockerfile +++ b/ci/xapp_onboarder/Dockerfile @@ -17,11 +17,11 @@ FROM python:3.7-alpine ADD ./xapp_onboarder /opt/xapp_onboarder - RUN cd /opt/xapp_onboarder && pip3 install . && rm -r /opt/xapp_onboarder ARG HELM_VERSION="2.12.3" +ENV HELM_VERSION=${HELM_VERSION} -RUN wget https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VERSION}-linux-amd64.tar.gz && tar -xvf helm-v${HELM_VERSION}-linux-amd64.tar.gz && mv linux-amd64/helm /usr/local/bin/helm && rm -r linux-amd64 && rm helm-v${HELM_VERSION}-linux-amd64.tar.gz +RUN wget https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz && tar -xvf helm-v${HELM_VERSION}-linux-amd64.tar.gz && mv linux-amd64/helm /usr/local/bin/helm && rm -r linux-amd64 && rm helm-v${HELM_VERSION}-linux-amd64.tar.gz ENTRYPOINT ["xapp_onboarder"]