Add Alpine 3.18 variant for PHP >= 8.1

Keep Alpine 3.16 to support PHP 8.0
This commit is contained in:
Jesper Noordsij
2023-05-10 11:41:15 +02:00
parent 9d896ba1fb
commit 9a3c8d8a80
74 changed files with 33 additions and 28 deletions

View File

@ -87,6 +87,7 @@ for version in "${versions[@]}"; do
for suite in \
bullseye \
buster \
alpine3.18 \
alpine3.17 \
alpine3.16 \
; do
@ -94,6 +95,10 @@ for version in "${versions[@]}"; do
if [ "$rcVersion" = '8.0' ] && [[ "$suite" = alpine* ]] && [ "$suite" != 'alpine3.16' ]; then
continue
fi
# https://github.com/docker-library/php/pull/1405
if [ "$suite" = 'alpine3.16' ] && [ "$rcVersion" != '8.0' ]; then
continue
fi
for variant in cli apache fpm zts; do
if [[ "$suite" = alpine* ]]; then
if [ "$variant" = 'apache' ]; then