mirror of
https://github.com/casjaysdevdocker/php
synced 2024-11-21 05:23:07 -05:00
🗃️ Committing everything that changed 🗃️
All checks were successful
release-tag / release-image (push) Successful in 47m28s
All checks were successful
release-tag / release-image (push) Successful in 47m28s
rootfs/root/docker/setup/05-custom.sh
This commit is contained in:
parent
83b78ec6ca
commit
053270c386
@ -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=$?
|
||||
|
Loading…
Reference in New Issue
Block a user