2024-09-10 10:16:28,973: INFO: Building contrail-general-base 2024-09-10 10:16:28,996: INFO: Building args: --network host --build-arg CONTRAIL_REGISTRY=nexus.gz1.opensdn.io:5101 --build-arg CONTRAIL_CONTAINER_TAG=master-9_9_3-2 --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 55.81 kB Step 1/19 : FROM centos:7 ---> eeb6ee3f44bd Step 2/19 : ARG SITE_MIRROR ---> Using cache ---> 472de0f38e3e Step 3/19 : ARG VENDOR_NAME ---> Running in f22f9978e9ae ---> Removed intermediate container f22f9978e9ae ---> f385cd18276e Step 4/19 : ARG VENDOR_DOMAIN ---> Running in e1ba1469eaa7 ---> Removed intermediate container e1ba1469eaa7 ---> 542f9c4088ac Step 5/19 : ARG CONTRAIL_CONTAINER_TAG ---> Running in 4c8b38c5bb2f ---> Removed intermediate container 4c8b38c5bb2f ---> 90875fb0907d Step 6/19 : LABEL vendor=$VENDOR_NAME version=$CONTRAIL_CONTAINER_TAG release="5.1.0" ---> Running in 573f5b3624f9 ---> Removed intermediate container 573f5b3624f9 ---> 35a25f0ca9e4 Step 7/19 : RUN mkdir /licenses ---> Running in 35cdf1e99a2e ---> Removed intermediate container 35cdf1e99a2e ---> a58114bfdefc Step 8/19 : COPY licensing.txt /licenses ---> 25120c011262 Step 9/19 : ARG GENERAL_EXTRA_RPMS="" ---> Running in ff21b6433c24 ---> Removed intermediate container ff21b6433c24 ---> 396bd2e5fa10 Step 10/19 : ARG YUM_ENABLE_REPOS="" ---> Running in 1b557fc736e6 ---> Removed intermediate container 1b557fc736e6 ---> 8903f70d48b9 Step 11/19 : ARG LC_ALL="en_US.UTF-8" ---> Running in 914f949b1e42 ---> Removed intermediate container 914f949b1e42 ---> 5405b6795393 Step 12/19 : ARG LANG="en_US.UTF-8" ---> Running in db5c3558d958 ---> Removed intermediate container db5c3558d958 ---> 97fcb7eb59d1 Step 13/19 : ARG LANGUAGE="en_US.UTF-8" ---> Running in 354fe1dea315 ---> Removed intermediate container 354fe1dea315 ---> e45950c937b2 Step 14/19 : 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 3a7865b5f221 ---> Removed intermediate container 3a7865b5f221 ---> 84c1b05053c9 Step 15/19 : COPY *.repo /etc/yum.repos.d/ ---> 8baa45448811 Step 16/19 : COPY pip.conf /etc/ ---> 8c4368bd4cf8 Step 17/19 : COPY *.sh / ---> 10502b8a82bd Step 18/19 : RUN 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 && 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 71f0092f99b3