2026 modernization

- use absolute base image names
- add Trixie support
- user debian/eol for Buster
This commit is contained in:
Jan Dittberner 2026-01-26 18:23:01 +01:00
parent d4ec5f329a
commit 2068ddab18
14 changed files with 164 additions and 7 deletions

View file

@ -2,8 +2,8 @@
set -e
for dist in jessie_php5 stretch_php7 buster_php7 bullseye_php7 bookworm_php8; do
docker build --pull --no-cache -t gnuviech/${dist}-base ${dist} -f ${dist}/Dockerfile-base
for dist in jessie_php5 stretch_php7 buster_php7 bullseye_php7 bookworm_php8 trixie_php8; do
docker build --pull -t gnuviech/${dist}-base ${dist} -f ${dist}/Dockerfile-base
docker build -t gnuviech/${dist} ${dist} -f ${dist}/Dockerfile
docker build -t gnuviech/${dist}-mysql ${dist} -f ${dist}/Dockerfile-mysql
docker build -t gnuviech/${dist}-pgsql ${dist} -f ${dist}/Dockerfile-pgsql