🗃️ Committing everything that changed 🗃️
All checks were successful
release-tag / release-image (push) Successful in 47m28s

rootfs/root/docker/setup/05-custom.sh
This commit is contained in:
casjay 2024-10-11 13:52:39 -04:00
parent 83b78ec6ca
commit 053270c386
Signed by untrusted user who does not match committer: jason
GPG Key ID: 1AB309F42A764145

View File

@ -38,20 +38,24 @@ if [ -n "$EXT_INSTALLED" ]; then
chmod +x "$BIN_DIR/install-php-extensions"
for ext in $EXT_LIST $EXT_ADDITIONAL; do
if ! echo "$ext" | grep -q "$EXT_INSTALLED"; then
apk add --no-cache php-$ext || install-php-extensions $ext
if apk add --no-cache php-$ext || install-php-extensions $ext; then
echo "Installed $ext"
else
echo "Failed to install $ext" >&2
fi
fi
done
else
echo "Failed to install $BIN_DIR/install-php-extensions"
exit 1
echo "Failed to install $BIN_DIR/install-php-extensions" >&2
exitCode=1
fi
else
echo "Can not get php modules: is php installed?"
exit 2
exitCode=2
fi
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Main script
php -m
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Set the exit code
#exitCode=$?