Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package postgres-13-image for openSUSE:Factory checked in at 2024-11-15 15:43:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/postgres-13-image (Old) and /work/SRC/openSUSE:Factory/.postgres-13-image.new.2017 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "postgres-13-image" Fri Nov 15 15:43:09 2024 rev:30 rq:1224285 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/postgres-13-image/postgres-13-image.changes 2024-11-01 21:05:38.173589877 +0100 +++ /work/SRC/openSUSE:Factory/.postgres-13-image.new.2017/postgres-13-image.changes 2024-11-15 15:43:18.090570608 +0100 @@ -1,0 +2,5 @@ +Thu Nov 14 17:06:30 UTC 2024 - SUSE Update Bot <bci-inter...@suse.de> + +- switch to multistage build + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Dockerfile ++++++ --- /var/tmp/diff_new_pack.uTO75K/_old 2024-11-15 15:43:18.538589363 +0100 +++ /var/tmp/diff_new_pack.uTO75K/_new 2024-11-15 15:43:18.538589363 +0100 @@ -20,13 +20,16 @@ #!BuildTag: opensuse/postgres:13 #!BuildTag: opensuse/postgres:%%pg_minor_version%% -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 libpq5 postgresql13-server findutils; \ + zypper -n --installroot /target --gpg-auto-import-keys install --no-recommends libpq5 postgresql13-server findutils coreutils sed util-linux; \ 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.postgres LABEL org.opencontainers.image.title="openSUSE Tumbleweed PostgreSQL 13"