Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package postfix-image for openSUSE:Factory checked in at 2024-10-08 17:25:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/postfix-image (Old) and /work/SRC/openSUSE:Factory/.postfix-image.new.19354 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "postfix-image" Tue Oct 8 17:25:25 2024 rev:14 rq:1206310 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/postfix-image/postfix-image.changes 2024-09-26 18:54:10.899308466 +0200 +++ /work/SRC/openSUSE:Factory/.postfix-image.new.19354/postfix-image.changes 2024-10-08 17:26:17.761754546 +0200 @@ -1,0 +2,5 @@ +Tue Oct 8 11:38:12 UTC 2024 - SUSE Update Bot <bci-inter...@suse.de> + +- switch postfix to multi-stage micro based build + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Dockerfile ++++++ --- /var/tmp/diff_new_pack.3jcSkz/_old 2024-10-08 17:26:18.401781257 +0200 +++ /var/tmp/diff_new_pack.3jcSkz/_new 2024-10-08 17:26:18.405781424 +0200 @@ -19,13 +19,16 @@ #!BuildTag: opensuse/postfix:%%postfix_version%%-%RELEASE% #!BuildTag: opensuse/postfix:latest -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 ca-certificates-mozilla cyrus-sasl cyrus-sasl-plain ed gawk netcfg postfix postfix-ldap postfix-lmdb timezone mandoc spamassassin-spamc spamass-milter; \ + zypper -n --installroot /target --gpg-auto-import-keys install --no-recommends ca-certificates-mozilla curl cyrus-sasl cyrus-sasl-plain ed findutils gawk grep netcfg openldap2 openldap2-client postfix postfix-ldap postfix-lmdb sed timezone mandoc spamassassin-spamc spamass-milter; \ zypper -n clean; \ rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2} - +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.postfix LABEL org.opencontainers.image.authors="openSUSE (https://www.opensuse.org/)"