You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: enable cross-platform vendor stages for buildah 0.10 arm64 builds
Add FROM --platform=linux/amd64 on vendor COPY stages and set
ALLOW_CROSS_PLATFORM_IMAGES=true on build-images to tolerate amd64-only
vendor images on arm64. Pin glibc-devel-2.39-124.el10_2 before dnf
install to work around UBI10 glibc-gconv-extra repo lag on amd64 with
buildah 0.10. Omit rpm-build until glibc-gconv-extra 126 is published.
Bump UBI10 base to 10.2-1782277716. Align Konflux task digests with
MintMaker konflux-ci#781.
Signed-off-by: Happy Bhati <hbhati@redhat.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
Copy file name to clipboardExpand all lines: Dockerfile
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
FROM quay.io/konflux-ci/oras:latest@sha256:6cea0b9e142c2e18429f5cd30d716715d932047cbf1631334c5c31f7e47c3a19 as oras
2
2
3
-
FROM registry.redhat.io/rhtas/ec-rhel9:0.7@sha256:1fc7c6171d5a6058fa4df1c791906fdbd94df06df048b8230a4d11d1cf9da489 as conforma-cli
3
+
FROM--platform=linux/amd64 registry.redhat.io/rhtas/ec-rhel9:0.7@sha256:1fc7c6171d5a6058fa4df1c791906fdbd94df06df048b8230a4d11d1cf9da489 as conforma-cli
4
4
5
-
FROM registry.redhat.io/rhtas/cosign-rhel9:1.3.3-1773309431 as cosign
5
+
FROM--platform=linux/amd64 registry.redhat.io/rhtas/cosign-rhel9:1.3.3-1773309431 as cosign
6
6
7
-
FROM registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8:4.10.4-1 as roxctl
7
+
FROM--platform=linux/amd64 registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8:4.10.4-1 as roxctl
8
8
9
-
FROM registry.access.redhat.com/ubi10/ubi:10.2-1780550529
9
+
FROM registry.access.redhat.com/ubi10/ubi:10.2-1782277716
10
10
11
11
ARG COSIGN_VERSION=2.4.1
12
12
ARG COSIGN3_VERSION=3.0.4
@@ -84,7 +84,10 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh && \
84
84
RUN dnf install -y 'dnf-command(config-manager)' && \
0 commit comments