From f186c4572b5ff7a1e4c4d91598244535c337a650 Mon Sep 17 00:00:00 2001 From: Sunny Date: Wed, 12 Oct 2022 11:14:11 +0800 Subject: [PATCH] add --with-config-file-path=/etc --- docker/compile-php.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/compile-php.sh b/docker/compile-php.sh index 7dc7dae8..07e18168 100755 --- a/docker/compile-php.sh +++ b/docker/compile-php.sh @@ -30,6 +30,7 @@ function php_compile_args() { _php_arg="$_php_arg --with-pear=no" _php_arg="$_php_arg --disable-cgi" _php_arg="$_php_arg --disable-phpdbg" + _php_arg="$_php_arg --with-config-file-path=/etc" _php_arg="$_php_arg $($self_dir/check-extensions.sh check_in_configure $1)" echo $_php_arg }