2025-06-30 01:23:14,709: INFO: Building contrail-general-base 2025-06-30 01:23:14,718: INFO: Building args: --network host --build-arg CONTRAIL_REGISTRY=nexus.gz1.opensdn.io:5102 --build-arg CONTRAIL_CONTAINER_TAG=nightly-r24.1-centos --build-arg SITE_MIRROR=http://nexus.gz1.opensdn.io/repository/external-web-cache --build-arg LINUX_DISTR_VER=7 --build-arg LINUX_DISTR=centos --build-arg GENERAL_EXTRA_RPMS="" --build-arg BASE_EXTRA_RPMS="" --build-arg YUM_ENABLE_REPOS="" --build-arg CONTAINER_NAME=contrail-general-base --build-arg UBUNTU_DISTR_VERSION=22.04 --build-arg UBUNTU_DISTR=ubuntu --build-arg VENDOR_NAME=OpenSDN-IO --build-arg VENDOR_DOMAIN=io.opensdn Sending build context to Docker daemon 69.63 kB Step 1/20 : FROM centos:7 7: Pulling from library/centos 2d473b07cdd5: Already exists Digest: sha256:be65f488b7764ad3638f236b7b515b3678369a5124c47b8d32916d6487418ea4 Status: Downloaded newer image for centos:7 ---> eeb6ee3f44bd Step 2/20 : ARG LINUX_DISTR=centos ---> Running in 8483f785760b ---> Removed intermediate container 8483f785760b ---> 95d3e9131715 Step 3/20 : ARG SITE_MIRROR ---> Running in 43a1bd1f2ed0 ---> Removed intermediate container 43a1bd1f2ed0 ---> 27ddc9bc92b9 Step 4/20 : ARG VENDOR_NAME ---> Running in c217d0dc9b9e ---> Removed intermediate container c217d0dc9b9e ---> 64c7d2329f19 Step 5/20 : ARG VENDOR_DOMAIN ---> Running in 078a1725467f ---> Removed intermediate container 078a1725467f ---> 9da6e13ae718 Step 6/20 : ARG CONTRAIL_CONTAINER_TAG ---> Running in 45fe1bdd2297 ---> Removed intermediate container 45fe1bdd2297 ---> bb5aedbfa966 Step 7/20 : LABEL vendor=$VENDOR_NAME version=$CONTRAIL_CONTAINER_TAG release="5.1.0" ---> Running in 5e16f49658b8 ---> Removed intermediate container 5e16f49658b8 ---> ec46cfb4bd30 Step 8/20 : RUN mkdir /licenses ---> Running in 76a15ae0d591 ---> Removed intermediate container 76a15ae0d591 ---> 804f7016c19a Step 9/20 : COPY licensing.txt /licenses ---> 7cf3deacf137 Step 10/20 : ARG GENERAL_EXTRA_RPMS="" ---> Running in 96c8900962a5 ---> Removed intermediate container 96c8900962a5 ---> a24ae1bd03dc Step 11/20 : ARG YUM_ENABLE_REPOS="" ---> Running in c40d50c110b4 ---> Removed intermediate container c40d50c110b4 ---> 1bcc964bc1f5 Step 12/20 : ARG LC_ALL="en_US.UTF-8" ---> Running in bb8979cb495a ---> Removed intermediate container bb8979cb495a ---> b7ac1bb16fb2 Step 13/20 : ARG LANG="en_US.UTF-8" ---> Running in e887283341f6 ---> Removed intermediate container e887283341f6 ---> c8c3a1f8fe60 Step 14/20 : ARG LANGUAGE="en_US.UTF-8" ---> Running in 13e676f3a916 ---> Removed intermediate container 13e676f3a916 ---> 81f901b7da66 Step 15/20 : ENV VENDOR_DOMAIN=$VENDOR_DOMAIN VENDOR_NAME=$VENDOR_NAME CONTRAIL_GID=1999 CONTRAIL_UID=1999 CONTRAIL_USER=contrail CONTRAIL_VERSION=$CONTRAIL_CONTAINER_TAG LC_ALL=$LC_ALL LANG=$LANG LANGUAGE=$LANGUAGE ---> Running in b9a9c36cf586 ---> Removed intermediate container b9a9c36cf586 ---> d53a9056f0d4 Step 16/20 : COPY *.repo /etc/yum.repos.d/ ---> 52b50b28f1ab Step 17/20 : COPY pip.conf /etc/ ---> 5fd71717588a Step 18/20 : COPY *.sh / ---> acb0975fdee4 Step 19/20 : RUN set -e ; source /etc/os-release && YUM_ENABLE_REPOS=$(echo $YUM_ENABLE_REPOS | tr -d '"') && if [[ -n "$YUM_ENABLE_REPOS" ]] ; then echo "INFO: contrail-general-base: enable repos $YUM_ENABLE_REPOS" && if ! type -p yum-config-manager ; then yum install -y yum-utils ; fi && yum-config-manager --enable $YUM_ENABLE_REPOS && yum clean metadata ; fi && if [[ "$LINUX_DISTR" == "centos" ]]; then for file in /etc/yum.repos.d/CentOS-* ; do grep -v mirrorlist= "$file" > "$file".new && mv "$file".new "$file" ; done ; sed -i 's|#s*baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-* ; find /etc/yum.repos.d/ | grep -i rocky | xargs -r rm ; ls -l /etc/yum.repos.d/ ; else find /etc/yum.repos.d/ | grep -i centos | xargs -r rm ; ls -l /etc/yum.repos.d/ ; fi ; yum update -y -x "redhat-release*" -x "coreutils*" && yum -y update-minimal --security --sec-severity=Important --sec-severity=Critical && pkgs="hostname iproute less wget openssl" && GENERAL_EXTRA_RPMS=$(echo $GENERAL_EXTRA_RPMS | tr -d '"' | tr ',' ' ') && if [[ -n "$GENERAL_EXTRA_RPMS" ]] ; then pkgs+=" $GENERAL_EXTRA_RPMS" ; fi && if [[ "$ID" == 'rhel' && "${PLATFORM_ID//*:/}" == 'el8' ]] ; then pkgs+=" yum-utils python2 glibc-langpack-en compat-openssl10" ; fi && yum install -y $pkgs && source /functions.sh && download_package https://bootstrap.pypa.io pip/2.7/get-pip.py /tmp/get-pip.py && python2 /tmp/get-pip.py 'pip==20.1' && type -p pip || alternatives --verbose --install /usr/bin/pip pip $(type -p pip2) 100 && type -p python || alternatives --verbose --set python /usr/bin/python2 && yum install -y python3 python3-setuptools && yum clean all -y && rm -rf /var/cache/yum && groupadd --gid $CONTRAIL_GID --system $CONTRAIL_USER && useradd -md /home/contrail --uid $CONTRAIL_UID --shell /sbin/nologin --system --gid $CONTRAIL_GID $CONTRAIL_USER ---> Running in d7042a2413dc total 52 -rw-r--r--. 1 root root 1 Jun 30 01:23 CentOS-Base.repo -rw-r--r--. 1 root root 1 Jun 30 01:23 CentOS-CR.repo -rw-r--r--. 1 root root 1 Jun 30 01:23 CentOS-Debuginfo.repo -rw-r--r--. 1 root root 1 Jun 30 01:23 CentOS-fasttrack.repo -rw-r--r--. 1 root root 1 Jun 30 01:23 CentOS-Media.repo -rw-r--r--. 1 root root 1 Jun 30 01:23 CentOS-Sources.repo -rw-r--r--. 1 root root 1 Jun 30 01:23 CentOS-Vault.repo -rw-r--r--. 1 root root 1 Jun 30 01:23 CentOS-x86_64-kernel.repo -rw-r--r--. 1 root root 100 Jun 30 00:08 contrail.repo -rw-r--r--. 1 root root 1108 Jun 30 01:23 mirror-base-centos7.repo -rw-r--r--. 1 root root 216 Jun 30 01:23 mirror-docker.repo -rw-r--r--. 1 root root 255 Jun 30 01:23 mirror-openstack.repo -rw-r--r--. 1 root root 140 Jun 30 01:23 tpc.repo