We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a12bee2 commit 151e47eCopy full SHA for 151e47e
dockerfiles/verify_packages/alpine/install.sh
@@ -21,6 +21,9 @@ fi
21
if [ -z "$PHP_BIN" ]; then
22
PHP_BIN=$(command -v php81 || true)
23
fi
24
+if [ -z "$PHP_BIN" ]; then
25
+ PHP_BIN=$(command -v php82 || true)
26
+fi
27
28
PHP_BIN=$(command -v php7 || true)
29
@@ -46,6 +49,9 @@ cp $(pwd)/dockerfiles/verify_packages/nginx.conf /etc/nginx/nginx.conf
46
49
if [ -z "$PHP_FPM_BIN" ]; then
47
50
PHP_FPM_BIN=$(command -v php-fpm || true)
48
51
52
+if [ -z "$PHP_FPM_BIN" ]; then
53
+ PHP_FPM_BIN=$(command -v php-fpm82 || true)
54
55
56
PHP_FPM_BIN=$(command -v php-fpm81 || true)
57
0 commit comments