Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package prometheus-image for openSUSE:Factory checked in at 2025-05-05 22:29:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/prometheus-image (Old) and /work/SRC/openSUSE:Factory/.prometheus-image.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "prometheus-image" Mon May 5 22:29:19 2025 rev:30 rq:1274555 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/prometheus-image/prometheus-image.changes 2025-04-28 16:20:04.034538870 +0200 +++ /work/SRC/openSUSE:Factory/.prometheus-image.new.30101/prometheus-image.changes 2025-05-05 22:59:02.379138268 +0200 @@ -1,0 +2,5 @@ +Mon May 5 09:55:29 UTC 2025 - SUSE Update Bot <bci-inter...@suse.de> + +- Switch to multistage build + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Dockerfile ++++++ --- /var/tmp/diff_new_pack.bBmFCC/_old 2025-05-05 22:59:04.107210924 +0200 +++ /var/tmp/diff_new_pack.bBmFCC/_new 2025-05-05 22:59:04.143212438 +0200 @@ -21,13 +21,16 @@ #!BuildTag: opensuse/prometheus:%%prometheus_major_version%% #!BuildTag: opensuse/prometheus: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 golang-github-prometheus-prometheus curl -RUN set -euo pipefail; zypper -n clean -a; \ + zypper -n --installroot /target --gpg-auto-import-keys install --no-recommends golang-github-prometheus-prometheus curl +RUN set -euo pipefail; zypper -n --installroot /target clean -a; \ 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.prometheus LABEL org.opencontainers.image.title="openSUSE Tumbleweed Prometheus"