X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ci%2FDockerfile;h=80e17b26070a8314fee2dd0c9c5569a5c9536e3b;hb=2e1a996d685b26af321c12a3a730cd4e961b0f75;hp=cd5ad0001dbf03d26827fe41c1fc396e492d3b90;hpb=2228149af0395d32bcc5de1f9d312a9882246b12;p=it%2Fdep.git diff --git a/ci/Dockerfile b/ci/Dockerfile index cd5ad000..80e17b26 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -15,13 +15,14 @@ # limitations under the License. # ############################################################################## - FROM ubuntu:18.04 -RUN apt-get update && apt-get -y install curl -ARG GH=get_helm.sh -RUN curl --silent --show-error -L https://git.io/${GH} -o ${GH} -RUN bash ${GH} -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 +# Remove the smo-install as this one will be verified in another verify job +RUN rm -rf $TGT/smo-install RUN $TGT/bin/verify-ric-charts