Skip to content

Commit 151e47e

Browse files
committed
ci: Handle new Alpine 3.19 PHP Binaries
1 parent a12bee2 commit 151e47e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: dockerfiles/verify_packages/alpine/install.sh

+6
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ fi
2121
if [ -z "$PHP_BIN" ]; then
2222
PHP_BIN=$(command -v php81 || true)
2323
fi
24+
if [ -z "$PHP_BIN" ]; then
25+
PHP_BIN=$(command -v php82 || true)
26+
fi
2427
if [ -z "$PHP_BIN" ]; then
2528
PHP_BIN=$(command -v php7 || true)
2629
fi
@@ -46,6 +49,9 @@ cp $(pwd)/dockerfiles/verify_packages/nginx.conf /etc/nginx/nginx.conf
4649
if [ -z "$PHP_FPM_BIN" ]; then
4750
PHP_FPM_BIN=$(command -v php-fpm || true)
4851
fi
52+
if [ -z "$PHP_FPM_BIN" ]; then
53+
PHP_FPM_BIN=$(command -v php-fpm82 || true)
54+
fi
4955
if [ -z "$PHP_FPM_BIN" ]; then
5056
PHP_FPM_BIN=$(command -v php-fpm81 || true)
5157
fi

0 commit comments

Comments
 (0)