X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ci%2FDockerfile;h=235b26719289f8cfbf84aa2e381bed6e36ff2a25;hb=1644ece1946a8eb4046e837ea02bba366be5814a;hp=a28adb6c44ffc2c205055598fc39159a199e8db3;hpb=5e94a66d5dc9ec584ab7b40f5ac983b724b2119b;p=it%2Fdep.git diff --git a/ci/Dockerfile b/ci/Dockerfile index a28adb6c..235b2671 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -15,14 +15,12 @@ # 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 RUN $TGT/bin/verify-ric-charts