From 3caadff580c0192c40a09d4a96460a0815901381 Mon Sep 17 00:00:00 2001 From: "ai-collaboration-app[bot]" <308726528+ai-collaboration-app[bot]@users.noreply.github.com> Date: Wed, 16 Sep 2026 10:30:35 +0000 Subject: [PATCH] Require updated ACL and attr runtime packages --- BCI.dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BCI.dockerfile b/BCI.dockerfile index 981f8abd..86a2a495 100644 --- a/BCI.dockerfile +++ b/BCI.dockerfile @@ -5,7 +5,7 @@ ARG EBPF_SUBFOLDER="x86_64" RUN : # No-op command to create an explicit layer - this fixes a weird buildkit/buildx bug on macos arm # Temporary build stage image -FROM registry.suse.com/bci/bci-base:latest AS chroot-builder +FROM registry.suse.com/bci/bci-base:15.7 AS chroot-builder # Install system packages using builder image that has zypper COPY --from=final / /chroot/ @@ -24,7 +24,8 @@ ENV DOCKER_STS_AGENT=true \ RUN zypper -n --gpg-auto-import-keys --installroot /chroot refresh && \ zypper -n --gpg-auto-import-keys --installroot /chroot update && \ - zypper -n --installroot /chroot install util-linux libudev1 ca-certificates curl wget xz iproute2 conntrack-tools && \ + zypper -n --installroot /chroot install util-linux libudev1 ca-certificates curl wget xz iproute2 conntrack-tools \ + 'libacl1>=2.4.0-150000.4.6.1' 'libattr1>=2.6.0-150000.4.3.1' && \ zypper -n --root /chroot clean --all RUN mkdir -p /chroot/opt/stackstate-agent/bin/agent \