Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-3.14-image for
openSUSE:Factory checked in at 2026-05-27 16:15:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-3.14-image (Old)
and /work/SRC/openSUSE:Factory/.python-3.14-image.new.1937 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-3.14-image"
Wed May 27 16:15:34 2026 rev:4 rq:1355241 version:unknown
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-3.14-image/python-3.14-image.changes
2026-04-28 12:00:50.968681553 +0200
+++
/work/SRC/openSUSE:Factory/.python-3.14-image.new.1937/python-3.14-image.changes
2026-05-27 16:16:50.044598899 +0200
@@ -1,0 +2,5 @@
+Tue May 26 18:37:35 UTC 2026 - SUSE Update Bot <[email protected]>
+
+- Switch to multi-stage build to reduce dependencies
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ Dockerfile.micro ++++++
--- /var/tmp/diff_new_pack.njgzxc/_old 2026-05-27 16:16:51.932676595 +0200
+++ /var/tmp/diff_new_pack.njgzxc/_new 2026-05-27 16:16:51.936676760 +0200
@@ -20,13 +20,18 @@
#!BuildTag: opensuse/bci/python:3.14-micro
#!BcntSyncTag: python-3.14-image
-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 python314 python314-pip
+ export PERMCTL_ALLOW_INSECURE_MODE_IF_NO_PROC=1; \
+ zypper -n --installroot /target --gpg-auto-import-keys install
--no-recommends python314 python314-pip
# cleanup logs and temporary files
-RUN set -euo pipefail; zypper -n clean -a; \
+RUN set -euo pipefail; zypper -n --installroot /target clean -a; \
+ t=$(mktemp -d); mv /target/usr/lib/sysimage/rpm/Packages.db $t; rpmdb
--rebuilddb --dbpath=$t; \
+ rm /target/usr/lib/sysimage/rpm/*.db && mv $t/Packages.db
/target/usr/lib/sysimage/rpm/; \
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}; \
@@ -36,8 +41,10 @@
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 /
+RUN set -euo pipefail; rm -vf /usr/lib/sysimage/rpm/Index.db
# Define labels according to
https://en.opensuse.org/Building_derived_containers
# labelprefix=org.opensuse.bci.python
LABEL org.opencontainers.image.title="openSUSE Tumbleweed BCI Python 3.14
micro runtime"