#11 0.123 total 32 #11 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 mirror-base-rocky9.repo #11 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 mirror-docker9.repo #11 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 mirror-epel9.repo #11 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 rocky-addons.repo #11 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 rocky-devel.repo #11 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 rocky-extras.repo #11 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 rocky.repo #11 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 tpc.repo #11 0.455 Failed to set locale, defaulting to C.UTF-8 #11 0.635 Error: There are no enabled repositories in "/etc/yum.repos.d", "/etc/yum/repos.d", "/etc/distro.repos.d". #11 ERROR: process "/bin/sh -c set -e ; source /etc/os-release ; 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 ; yum install -y hostname iproute less wget openssl glibc-langpack-en rsync procps-ng ; source /functions.sh ; yum install -y python3 python3-pip ; python3 -m pip install --upgrade pip setuptools ; rm -rf /root/.cache ; 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" did not complete successfully: exit code: 1 ------ > [7/7] RUN set -e ; source /etc/os-release ; if [[ "rockylinux" == "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 ; yum install -y hostname iproute less wget openssl glibc-langpack-en rsync procps-ng ; source /functions.sh ; yum install -y python3 python3-pip ; python3 -m pip install --upgrade pip setuptools ; rm -rf /root/.cache ; yum clean all -y ; rm -rf /var/cache/yum ; groupadd --gid 1999 --system contrail ; useradd -md /home/contrail --uid 1999 --shell /sbin/nologin --system --gid 1999 contrail: 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 mirror-base-rocky9.repo 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 mirror-docker9.repo 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 mirror-epel9.repo 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 rocky-addons.repo 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 rocky-devel.repo 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 rocky-extras.repo 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 rocky.repo 0.123 -rw-r--r--. 1 root root 1 Oct 9 13:58 tpc.repo 0.455 Failed to set locale, defaulting to C.UTF-8 0.635 Error: There are no enabled repositories in "/etc/yum.repos.d", "/etc/yum/repos.d", "/etc/distro.repos.d". ------ Dockerfile:46 -------------------- 45 | # remove all not-this-OS repos 46 | >>> RUN set -e ; 47 | >>> source /etc/os-release ; 48 | >>> if [[ "$LINUX_DISTR" == "centos" ]]; then 49 | >>> for file in /etc/yum.repos.d/CentOS-* ; do grep -v mirrorlist= "$file" > "$file".new && mv "$file".new "$file" ; done ; 50 | >>> sed -i 's|#s*baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-* ; 51 | >>> find /etc/yum.repos.d/ | grep -i rocky | xargs -r rm ; ls -l /etc/yum.repos.d/ ; 52 | >>> else 53 | >>> find /etc/yum.repos.d/ | grep -i centos | xargs -r rm ; ls -l /etc/yum.repos.d/ ; 54 | >>> fi ; 55 | >>> yum update -y -x "redhat-release*" -x "coreutils*" 56 | >>> yum -y update-minimal --security --sec-severity=Important --sec-severity=Critical ; 57 | >>> yum install -y hostname iproute less wget openssl glibc-langpack-en rsync procps-ng ; 58 | >>> source /functions.sh ; 59 | >>> yum install -y python3 python3-pip ; 60 | >>> # pip9 is too old and breaks install of gevent with c++ errors 61 | >>> python3 -m pip install --upgrade pip setuptools ; 62 | >>> rm -rf /root/.cache ; 63 | >>> yum clean all -y ; 64 | >>> rm -rf /var/cache/yum ; 65 | >>> groupadd --gid $CONTRAIL_GID --system $CONTRAIL_USER ; 66 | >>> useradd -md /home/contrail --uid $CONTRAIL_UID --shell /sbin/nologin --system --gid $CONTRAIL_GID $CONTRAIL_USER 67 | -------------------- ERROR: failed to solve: process "/bin/sh -c set -e ; source /etc/os-release ; 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 ; yum install -y hostname iproute less wget openssl glibc-langpack-en rsync procps-ng ; source /functions.sh ; yum install -y python3 python3-pip ; python3 -m pip install --upgrade pip setuptools ; rm -rf /root/.cache ; 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" did not complete successfully: exit code: 1 2025-10-09 13:58:08,697: INFO: Docker build duration: 2 seconds 2025-10-09 13:58:08,701: ERROR: Building opensdn-general-base failed, duration: 2 seconds REPOSITORY TAG IMAGE ID CREATED SIZE nexus.gz1.opensdn.io:5101/opensdn-container-builder-src master-2_2_2_4-1 b3bfefeadcf3 2 seconds ago 2.36MB tf-dev-sandbox compile daa820669c85 35 seconds ago 24.7GB nexus.gz1.opensdn.io:5101/opensdn-charms-src master-2_2_2_4-1 60c20f3467fe About a minute ago 6.04MB nexus.gz1.opensdn.io:5101/opensdn-container-builder-src 662d3ce91080 About a minute ago 2.35MB nexus.gz1.opensdn.io:5101/opensdn-kolla-ansible-src master-2_2_2_4-1 81184c5c1ea1 About a minute ago 32.6MB nexus.gz1.opensdn.io:5101/opensdn-ansible-deployer-src master-2_2_2_4-1 f11c2828dc1c About a minute ago 1.39MB nexus.gz1.opensdn.io:5101/opensdn-build-manifest-src master-2_2_2_4-1 92cbe3f87741 About a minute ago 4.17kB nexus.gz1.opensdn.io:5101/tf-dev-sandbox frozen 5f65f03cb968 3 hours ago 23.8GB