[2026-02-16T12:05:37,343876551+00:00] Validate context path [2026-02-16T12:05:37,347208466+00:00] Update CA trust [2026-02-16T12:05:37,348286625+00:00] Using mounted CA bundle: /mnt/trusted-ca/ca-bundle.crt '/mnt/trusted-ca/ca-bundle.crt' -> '/etc/pki/ca-trust/source/anchors/ca-bundle.crt' [2026-02-16T12:05:39,357710219+00:00] Prepare Dockerfile Checking if /var/workdir/cachi2/output/bom.json exists. Could not find prefetched sbom. No content_sets found for ICM [2026-02-16T12:05:39,364213159+00:00] Prepare system (architecture: x86_64) [2026-02-16T12:05:39,480323314+00:00] Setup prefetched Trying to pull registry.access.redhat.com/ubi9/python-39:1-1770654718... Getting image source signatures Checking if image destination supports signatures Copying blob sha256:f4bcf908368c26067db4519f5646363ca7c726f901ffb84a01163268ad8e7ba5 Copying blob sha256:42e6a6a435918edd0f574c7f9b312037c492e77be862b463342ba37037be5d8c Copying blob sha256:486d847cf55c4e66fddefc15e70b667b8e2a4c7b1e82c8ce16454a7ce5dec240 Copying blob sha256:f8fe0499d2ad5092c7d5d5010ab3f3db5ff7670b956d06919f47909300f0ea0d Copying config sha256:4f66ad3b3ef5d14d70776fbcf5779c67b75aa01c48e8d3f6a8fb9d6aa285dd9f Writing manifest to image destination Storing signatures [2026-02-16T12:05:50,673710955+00:00] Unsetting proxy { "architecture": "x86_64", "build-date": "2026-02-16T12:05:39Z", "com.redhat.component": "python-39-container", "com.redhat.license_terms": "https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI", "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream", "description": "Python 3.9 available as container is a base platform for building and running various Python 3.9 applications and frameworks. Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python's elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms.", "distribution-scope": "public", "io.buildah.version": "1.42.2", "io.buildpacks.stack.id": "com.redhat.stacks.ubi9-python-39", "io.k8s.description": "Python 3.9 available as container is a base platform for building and running various Python 3.9 applications and frameworks. Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python's elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms.", "io.k8s.display-name": "Python 3.9", "io.openshift.expose-services": "8080:http", "io.openshift.s2i.scripts-url": "image:///usr/libexec/s2i", "io.openshift.tags": "builder,python,python39,python-39,rh-python39", "io.s2i.scripts-url": "image:///usr/libexec/s2i", "maintainer": "SoftwareCollections.org ", "name": "ubi9/python-39", "org.opencontainers.image.created": "2026-02-16T12:05:39Z", "org.opencontainers.image.revision": "a046a5060cbec42958d35eaed9d2eac0e41b9c4e", "release": "1770654718", "summary": "Platform for building and running Python 3.9 applications", "url": "https://catalog.redhat.com/en/search?searchType=containers", "usage": "s2i build https://github.com/sclorg/s2i-python-container.git --context-dir=3.9/test/setup-test-app/ ubi9/python-39 python-sample-app", "vcs-ref": "a046a5060cbec42958d35eaed9d2eac0e41b9c4e", "vcs-type": "git", "vendor": "Red Hat, Inc.", "version": "1", "org.opencontainers.image.source": "https://github.com/redhat-appstudio-qe/group-snapshot-multi-component", "quay.expires-after": "6h" } [2026-02-16T12:05:50,724799539+00:00] Register sub-man Adding the entitlement to the build [2026-02-16T12:05:50,728027326+00:00] Add secrets [2026-02-16T12:05:50,735684976+00:00] Run buildah build [2026-02-16T12:05:50,736918045+00:00] buildah build --volume /tmp/entitlement:/etc/pki/entitlement --security-opt=unmask=/proc/interrupts --label architecture=x86_64 --label vcs-type=git --label vcs-ref=a046a5060cbec42958d35eaed9d2eac0e41b9c4e --label org.opencontainers.image.revision=a046a5060cbec42958d35eaed9d2eac0e41b9c4e --label org.opencontainers.image.source=https://github.com/redhat-appstudio-qe/group-snapshot-multi-component --label quay.expires-after=6h --label build-date=2026-02-16T12:05:39Z --label org.opencontainers.image.created=2026-02-16T12:05:39Z --annotation org.opencontainers.image.revision=a046a5060cbec42958d35eaed9d2eac0e41b9c4e --annotation org.opencontainers.image.source=https://github.com/redhat-appstudio-qe/group-snapshot-multi-component --annotation org.opencontainers.image.created=2026-02-16T12:05:39Z --tls-verify=true --no-cache --ulimit nofile=4096:4096 --http-proxy=false -f /tmp/Dockerfile.4yKtNV -t quay.io/redhat-appstudio-qe/group-fixh/python-component-jyvzxa:on-pr-a046a5060cbec42958d35eaed9d2eac0e41b9c4e . STEP 1/10: FROM registry.access.redhat.com/ubi9/python-39:1-1770654718 STEP 2/10: EXPOSE 8081/tcp STEP 3/10: ENV FLASK_PORT=8081 STEP 4/10: WORKDIR /projects STEP 5/10: COPY . . STEP 6/10: RUN if [ -f requirements.txt ]; then pip install -r requirements.txt; elif [ `ls -1q *.txt | wc -l` == 1 ]; then pip install -r *.txt; fi Collecting Flask==2.3.3 (from -r requirements.txt (line 1)) Downloading flask-2.3.3-py3-none-any.whl.metadata (3.6 kB) Collecting Werkzeug>=2.3.7 (from Flask==2.3.3->-r requirements.txt (line 1)) Downloading werkzeug-3.1.5-py3-none-any.whl.metadata (4.0 kB) Collecting Jinja2>=3.1.2 (from Flask==2.3.3->-r requirements.txt (line 1)) Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) Collecting itsdangerous>=2.1.2 (from Flask==2.3.3->-r requirements.txt (line 1)) Downloading itsdangerous-2.2.0-py3-none-any.whl.metadata (1.9 kB) Collecting click>=8.1.3 (from Flask==2.3.3->-r requirements.txt (line 1)) Downloading click-8.1.8-py3-none-any.whl.metadata (2.3 kB) Collecting blinker>=1.6.2 (from Flask==2.3.3->-r requirements.txt (line 1)) Downloading blinker-1.9.0-py3-none-any.whl.metadata (1.6 kB) Collecting importlib-metadata>=3.6.0 (from Flask==2.3.3->-r requirements.txt (line 1)) Downloading importlib_metadata-8.7.1-py3-none-any.whl.metadata (4.7 kB) Collecting zipp>=3.20 (from importlib-metadata>=3.6.0->Flask==2.3.3->-r requirements.txt (line 1)) Downloading zipp-3.23.0-py3-none-any.whl.metadata (3.6 kB) Collecting MarkupSafe>=2.0 (from Jinja2>=3.1.2->Flask==2.3.3->-r requirements.txt (line 1)) Downloading markupsafe-3.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (2.7 kB) Downloading flask-2.3.3-py3-none-any.whl (96 kB) Downloading blinker-1.9.0-py3-none-any.whl (8.5 kB) Downloading click-8.1.8-py3-none-any.whl (98 kB) Downloading importlib_metadata-8.7.1-py3-none-any.whl (27 kB) Downloading itsdangerous-2.2.0-py3-none-any.whl (16 kB) Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) Downloading werkzeug-3.1.5-py3-none-any.whl (225 kB) Downloading markupsafe-3.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (20 kB) Downloading zipp-3.23.0-py3-none-any.whl (10 kB) Installing collected packages: zipp, MarkupSafe, itsdangerous, click, blinker, Werkzeug, Jinja2, importlib-metadata, Flask Successfully installed Flask-2.3.3 Jinja2-3.1.6 MarkupSafe-3.0.3 Werkzeug-3.1.5 blinker-1.9.0 click-8.1.8 importlib-metadata-8.7.1 itsdangerous-2.2.0 zipp-3.23.0 [notice] A new release of pip is available: 24.2 -> 26.0.1 [notice] To update, run: pip install --upgrade pip STEP 7/10: CMD [ "python", "./app.py" ] STEP 8/10: COPY labels.json /usr/share/buildinfo/labels.json STEP 9/10: COPY labels.json /root/buildinfo/labels.json STEP 10/10: LABEL "architecture"="x86_64" "vcs-type"="git" "vcs-ref"="a046a5060cbec42958d35eaed9d2eac0e41b9c4e" "org.opencontainers.image.revision"="a046a5060cbec42958d35eaed9d2eac0e41b9c4e" "org.opencontainers.image.source"="https://github.com/redhat-appstudio-qe/group-snapshot-multi-component" "quay.expires-after"="6h" "build-date"="2026-02-16T12:05:39Z" "org.opencontainers.image.created"="2026-02-16T12:05:39Z" COMMIT quay.io/redhat-appstudio-qe/group-fixh/python-component-jyvzxa:on-pr-a046a5060cbec42958d35eaed9d2eac0e41b9c4e --> 65b316e9337c Successfully tagged quay.io/redhat-appstudio-qe/group-fixh/python-component-jyvzxa:on-pr-a046a5060cbec42958d35eaed9d2eac0e41b9c4e 65b316e9337c0096d877e0b80ea6bbe59b2513b848213e9fb42b262fc6419ea4 [2026-02-16T12:05:54,853339726+00:00] Unsetting proxy [2026-02-16T12:05:54,854629327+00:00] Add metadata Recording base image digests used registry.access.redhat.com/ubi9/python-39:1-1770654718 registry.access.redhat.com/ubi9/python-39:1-1770654718@sha256:c871688f22d2ac783a37703b1944fd94d8d2707aac8a3363fd1a039141b365f6 Getting image source signatures Copying blob sha256:100e7f3a591c84dcceb7622a819d2174e7970e8e831127b37494e6cf6a001686 Copying blob sha256:36ced060b673273d81d392688de84ed7e45aa9e36ea4c95d74959d03e38f0eeb Copying blob sha256:d2855df9728ef405efb5afc75661fc88784bdffe4a9d0d49ab260f386994ae50 Copying blob sha256:e8ff7bea5b1e1f4060ec962b9dd7dc4eea24c343fa64f992bb79759630cc5336 Copying blob sha256:d31c1bba33315f4ed1c38776f2656b43ee695ab026b500e1556afd73bf0a0707 Copying config sha256:65b316e9337c0096d877e0b80ea6bbe59b2513b848213e9fb42b262fc6419ea4 Writing manifest to image destination [2026-02-16T12:06:00,102106436+00:00] End build