Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions BCI.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/

Expand All @@ -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 \
Expand Down
Loading