2025-10-07 20:02:41,781: INFO: Building opensdn-analytics-snmp-base 2025-10-07 20:02:41,799: INFO: Building args: --network host --build-arg PIP_REPOSITORY=http://localhost:6667/pip/simple --build-arg CONTRAIL_REGISTRY=nexus.gz1.opensdn.io:5101 --build-arg CONTRAIL_CONTAINER_TAG=master-2_1_8_1-3 --build-arg SITE_MIRROR=http://nexus.gz1.opensdn.io/repository/external-web-cache --build-arg LINUX_DISTR_VER=9 --build-arg LINUX_DISTR=rockylinux --build-arg CONTAINER_NAME=opensdn-analytics-snmp-base --build-arg UBUNTU_DISTR_VERSION=24.04 --build-arg UBUNTU_DISTR=ubuntu --build-arg VENDOR_NAME=OpenSDN-IO --build-arg VENDOR_DOMAIN=io.opensdn --build-arg BUILD_IMAGE=tf-dev-sandbox:compile #0 building with "default" instance using docker driver #1 [internal] load build definition from Dockerfile #1 transferring dockerfile: #1 transferring dockerfile: 609B done #1 DONE 0.4s #2 [internal] load metadata for nexus.gz1.opensdn.io:5101/opensdn-base:master-2_1_8_1-3 #2 DONE 0.0s #3 [internal] load metadata for docker.io/library/tf-dev-sandbox:compile #3 DONE 0.0s #4 [internal] load .dockerignore #4 transferring context: #4 transferring context: 2B done #4 DONE 0.9s #5 [1/5] FROM nexus.gz1.opensdn.io:5101/opensdn-base:master-2_1_8_1-3 #5 DONE 0.2s #6 [build 1/1] FROM docker.io/library/tf-dev-sandbox:compile #6 CACHED #7 [stage-1 2/3] COPY --from=build /root/contrail/buildroot/usr/share/mibs/netsnmp /usr/share/mibs/netsnmp #7 DONE 0.8s #8 [stage-1 3/3] RUN set -e ; yum install -y net-snmp-devel ; yum clean all -y ; rm -rf /var/cache/yum #8 1.345 Contrail repo 10 kB/s | 257 B 00:00 #8 1.461 added from: http://tf-mirrors.gz1.opensdn.io/re 19 MB/s | 2.1 MB 00:00 #8 2.748 added from: http://tf-mirrors.gz1.opensdn.io/re 13 MB/s | 730 kB 00:00 #8 3.359 added from: http://tf-mirrors.gz1.opensdn.io/re 1.8 MB/s | 264 kB 00:00 #8 3.703 added from: http://tf-mirrors.gz1.opensdn.io/re 27 MB/s | 7.0 MB 00:00 #8 7.490 added from: http://tf-mirrors.gz1.opensdn.io/re 26 MB/s | 4.0 MB 00:00 #8 9.871 added from: http://tf-mirrors.gz1.opensdn.io/re 12 MB/s | 939 kB 00:00 #8 10.64 added from: http://tf-mirrors.gz1.opensdn.io/re 26 MB/s | 2.3 MB 00:00 #8 12.50 added from: http://tf-mirrors.gz1.opensdn.io/re 7.7 MB/s | 392 kB 00:00 #8 13.02 added from: http://tf-mirrors.gz1.opensdn.io/re 8.0 MB/s | 451 kB 00:00 #8 13.54 added from: http://tf-mirrors.gz1.opensdn.io/re 371 kB/s | 16 kB 00:00 #8 13.90 added from: http://tf-mirrors.gz1.opensdn.io/re 4.4 kB/s | 257 B 00:00 #8 14.22 added from: http://tf-mirrors.gz1.opensdn.io/re 280 kB/s | 13 kB 00:00 #8 14.66 added from: http://tf-mirrors.gz1.opensdn.io/re 1.0 MB/s | 64 kB 00:00 #8 15.83 added from: http://tf-mirrors.gz1.opensdn.io/re 36 MB/s | 30 MB 00:00 #8 32.39 Third parties for OpenSDN 34 MB/s | 5.4 MB 00:00 #8 46.64 Error: #8 46.64 Problem: cannot install the best candidate for the job #8 46.64 - nothing provides net-snmp-agent-libs(x86-64) = 1:5.9.4-5.el7 needed by net-snmp-devel-1:5.9.4-5.el7.x86_64 from tpc #8 46.65 (try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) #8 ERROR: process "/bin/sh -c set -e ; yum install -y net-snmp-devel ; yum clean all -y ; rm -rf /var/cache/yum" did not complete successfully: exit code: 1 ------ > [stage-1 3/3] RUN set -e ; yum install -y net-snmp-devel ; yum clean all -y ; rm -rf /var/cache/yum: 13.54 added from: http://tf-mirrors.gz1.opensdn.io/re 371 kB/s | 16 kB 00:00 13.90 added from: http://tf-mirrors.gz1.opensdn.io/re 4.4 kB/s | 257 B 00:00 14.22 added from: http://tf-mirrors.gz1.opensdn.io/re 280 kB/s | 13 kB 00:00 14.66 added from: http://tf-mirrors.gz1.opensdn.io/re 1.0 MB/s | 64 kB 00:00 15.83 added from: http://tf-mirrors.gz1.opensdn.io/re 36 MB/s | 30 MB 00:00 32.39 Third parties for OpenSDN 34 MB/s | 5.4 MB 00:00 46.64 Error: 46.64 Problem: cannot install the best candidate for the job 46.64 - nothing provides net-snmp-agent-libs(x86-64) = 1:5.9.4-5.el7 needed by net-snmp-devel-1:5.9.4-5.el7.x86_64 from tpc 46.65 (try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) ------ 2 warnings found (use docker --debug to expand):  - InvalidDefaultArgInFrom: Default value for ARG ${CONTRAIL_REGISTRY}/opensdn-base:${CONTRAIL_CONTAINER_TAG} results in empty or invalid base image name (line 6) - InvalidDefaultArgInFrom: Default value for ARG ${BUILD_IMAGE} results in empty or invalid base image name (line 4) Dockerfile:13 -------------------- 12 | # required to install python's snmp package 13 | >>> RUN set -e ; 14 | >>> yum install -y net-snmp-devel ; 15 | >>> yum clean all -y ; 16 | >>> rm -rf /var/cache/yum 17 | -------------------- ERROR: failed to solve: process "/bin/sh -c set -e ; yum install -y net-snmp-devel ; yum clean all -y ; rm -rf /var/cache/yum" did not complete successfully: exit code: 1 2025-10-07 20:03:33,647: INFO: Docker build duration: 52 seconds 2025-10-07 20:03:33,656: ERROR: Building opensdn-analytics-snmp-base failed, duration: 52 seconds REPOSITORY TAG IMAGE ID CREATED SIZE nexus.gz1.opensdn.io:5101/opensdn-base master-2_1_8_1-3 7f6d8967cc42 About a minute ago 514MB nexus.gz1.opensdn.io:5101/opensdn-analytics-base master-2_1_8_1-3 2d3497b176f4 About a minute ago 514MB nexus.gz1.opensdn.io:5101/opensdn-controller-config-base master-2_1_8_1-3 7d49bca87eb9 About a minute ago 514MB nexus.gz1.opensdn.io:5101/opensdn-general-base master-2_1_8_1-3 cd8c851eb108 2 minutes ago 278MB nexus.gz1.opensdn.io:5101/opensdn-container-builder-src master-2_1_8_1-3 84f8e3c301bf 3 minutes ago 2.33MB tf-dev-sandbox compile 09325db24859 3 minutes ago 24.9GB nexus.gz1.opensdn.io:5101/opensdn-charms-src master-2_1_8_1-3 72c3922bcb58 About an hour ago 6.04MB nexus.gz1.opensdn.io:5101/opensdn-container-builder-src 2a346527c7f5 About an hour ago 2.31MB nexus.gz1.opensdn.io:5101/opensdn-ansible-deployer-src master-2_1_8_1-3 b65b09c8bb47 About an hour ago 1.39MB nexus.gz1.opensdn.io:5101/opensdn-build-manifest-src master-2_1_8_1-3 e7f242267619 About an hour ago 4.17kB nexus.gz1.opensdn.io:5101/opensdn-kolla-ansible-src master-2_1_8_1-3 b49ea91c2d14 About an hour ago 32.6MB nexus.gz1.opensdn.io:5101/tf-dev-sandbox frozen 89804e3bfc8b About an hour ago 2.84GB tf-dev-sandbox frozen 89804e3bfc8b About an hour ago 2.84GB rockylinux 9 9cc24f05f309 22 months ago 176MB