Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package php-apache8-image for
openSUSE:Factory checked in at 2026-05-07 15:44:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/php-apache8-image (Old)
and /work/SRC/openSUSE:Factory/.php-apache8-image.new.1966 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "php-apache8-image"
Thu May 7 15:44:26 2026 rev:43 rq:1351318 version:unknown
Changes:
--------
--- /work/SRC/openSUSE:Factory/php-apache8-image/php-apache8-image.changes
2026-03-11 20:54:30.059905996 +0100
+++
/work/SRC/openSUSE:Factory/.php-apache8-image.new.1966/php-apache8-image.changes
2026-05-07 15:45:58.329570381 +0200
@@ -1,0 +2,10 @@
+Wed May 6 20:16:36 UTC 2026 - SUSE Update Bot <[email protected]>
+
+- run systemd-tmpfiles in builder stage
+
+-------------------------------------------------------------------
+Wed May 6 11:23:28 UTC 2026 - SUSE Update Bot <[email protected]>
+
+- use systemd-tmpfiles
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ Dockerfile ++++++
--- /var/tmp/diff_new_pack.5Ut6Ng/_old 2026-05-07 15:45:59.041599596 +0200
+++ /var/tmp/diff_new_pack.5Ut6Ng/_new 2026-05-07 15:45:59.049599924 +0200
@@ -20,13 +20,22 @@
#!BuildTag: opensuse/bci/php-apache:8
#!BuildTag: opensuse/bci/php-apache:latest
-FROM opensuse/tumbleweed:latest
+FROM opensuse/tumbleweed:latest AS target
+FROM opensuse/tumbleweed:latest AS builder
+COPY --from=target / /target
RUN set -euo pipefail; \
- zypper -n install php8 php8-cli php-composer2 php8-curl php8-zip php8-zlib
php8-phar php8-mbstring apache2-mod_php8
+ export PERMCTL_ALLOW_INSECURE_MODE_IF_NO_PROC=1; \
+ zypper -n --installroot /target --gpg-auto-import-keys install php8
php8-cli php-composer2 php8-curl php8-zip php8-zlib php8-phar php8-mbstring
apache2-mod_php8
+
+RUN set -euo pipefail; zypper -n install --no-recommends systemd && \
+ systemd-tmpfiles --create --root /target apache2.conf
+
# 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 +45,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/tumbleweed: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.php-apache
LABEL org.opencontainers.image.title="openSUSE Tumbleweed BCI PHP-Apache 8"