X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ci%2FDockerfile;h=235b26719289f8cfbf84aa2e381bed6e36ff2a25;hb=1644ece1946a8eb4046e837ea02bba366be5814a;hp=bd60013be7dfe76efef4720a9311d320d937119b;hpb=6f157d7b84f5c957c068146a300f25fd0983375f;p=it%2Fdep.git diff --git a/ci/Dockerfile b/ci/Dockerfile index bd60013b..235b2671 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -15,11 +15,12 @@ # limitations under the License. # ############################################################################## - FROM ubuntu:18.04 -RUN apt-get update && apt-get -y install curl -RUN curl -L https://git.io/get_helm.sh | bash -RUN helm init -c +RUN apt-get update && apt-get -y install curl ca-certificates wget +ARG HELMVERSION=v2.17.0 +# often times out during LF jenkins build +RUN wget https://get.helm.sh/helm-${HELMVERSION}-linux-amd64.tar.gz && tar -xvf ../helm-${HELMVERSION}-linux-amd64.tar.gz && mv linux-amd64/helm /usr/local/bin/helm +RUN helm init -c --skip-repos ARG TGT=/tmp/it-dep COPY . $TGT RUN $TGT/bin/verify-ric-charts