X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=ci%2FDockerfile;h=80e17b26070a8314fee2dd0c9c5569a5c9536e3b;hb=refs%2Fchanges%2F52%2F12752%2F4;hp=a28adb6c44ffc2c205055598fc39159a199e8db3;hpb=5e94a66d5dc9ec584ab7b40f5ac983b724b2119b;p=it%2Fdep.git diff --git a/ci/Dockerfile b/ci/Dockerfile index a28adb6c..80e17b26 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -15,14 +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 apt-get update && apt-get -y install curl ca-certificates wget +ARG HELMVERSION=v2.17.0 # often times out during LF jenkins build -RUN curl --silent --show-error --connect-timeout 10 --retry 6 -L https://raw.githubusercontent.com/helm/helm/master/scripts/get -o ${GH} -RUN bash ${GH} -RUN helm init -c +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