Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package 389-ds-image for openSUSE:Factory checked in at 2026-03-20 21:26:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/389-ds-image (Old) and /work/SRC/openSUSE:Factory/.389-ds-image.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "389-ds-image" Fri Mar 20 21:26:15 2026 rev:10 rq:1341541 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/389-ds-image/389-ds-image.changes 2026-03-11 20:54:42.596418339 +0100 +++ /work/SRC/openSUSE:Factory/.389-ds-image.new.8177/389-ds-image.changes 2026-03-20 21:26:45.122834614 +0100 @@ -1,0 +2,5 @@ +Fri Mar 20 09:15:32 UTC 2026 - SUSE Update Bot <[email protected]> + +- switch to a bci-micro based multistage build + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Dockerfile ++++++ --- /var/tmp/diff_new_pack.wG4kyr/_old 2026-03-20 21:26:46.650898128 +0100 +++ /var/tmp/diff_new_pack.wG4kyr/_new 2026-03-20 21:26:46.698900123 +0100 @@ -21,13 +21,20 @@ #!BuildTag: opensuse/389-ds:latest #!BuildRelease: 35 -FROM opensuse/tumbleweed:latest +FROM opensuse/bci/bci-micro:latest AS target +FROM opensuse/tumbleweed:latest AS builder +COPY --from=target / /target RUN set -euo pipefail; \ - zypper -n install --no-recommends 389-ds timezone openssl nss_synth + export PERMCTL_ALLOW_INSECURE_MODE_IF_NO_PROC=1; \ + zypper -n --installroot /target --gpg-auto-import-keys install --no-recommends 389-ds timezone openssl nss_synth +# sanity check that the version from the tag is equal to the version of 389-ds that we expect +RUN set -euo pipefail; \ + [ "$(rpm --root /target -q --qf '%{version}' 389-ds | \ + cut -d '.' -f -2)" = "3.1" ] # cleanup logs and temporary files -RUN set -euo pipefail; zypper -n clean -a; \ +RUN set -euo pipefail; zypper -n --installroot /target clean -a; \ rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}; \ rm -rf {/target,}/run/*; \ rm -f {/target,}/etc/{shadow-,group-,passwd-,.pwd.lock}; \ @@ -37,8 +44,9 @@ rm -f {/target,}/var/cache/ldconfig/aux-cache # set the day of last password change to empty -RUN set -euo pipefail; sed -i 's/^\([^:]*:[^:]*:\)[^:]*\(:.*\)$/\1\2/' /etc/shadow - +RUN set -euo pipefail; sed -i 's/^\([^:]*:[^:]*:\)[^:]*\(:.*\)$/\1\2/' /target/etc/shadow +FROM opensuse/bci/bci-micro:latest +COPY --from=builder /target / # Define labels according to https://en.opensuse.org/Building_derived_containers # labelprefix=org.opensuse.application.389-ds LABEL org.opencontainers.image.authors="[email protected]"
