Compare commits

..

1 Commits

Author SHA1 Message Date
Deon George
2e820c47b4 PHP 8.4 install mysql module
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 36s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 2m48s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s
Create Docker Image / Build Docker Test Image (x86_64) (push) Successful in 41s
Create Docker Image / Final Docker Test Image Manifest (push) Successful in 8s
2025-02-16 23:26:47 +11:00

View File

@ -100,7 +100,7 @@ if [ -r artisan -a -e ${php}/.env ]; then
# We only check for non mount points, in case this container has the app inside # We only check for non mount points, in case this container has the app inside
mp=$(mp ${php}) mp=$(mp ${php})
if [ -z "${BUILD}" -o ${mp} -eq 0 ]; then if [ -n "${BUILD}" -o ${mp} -eq 0 ]; then
echo " - Caching configuration..." echo " - Caching configuration..."
CMD="php artisan optimize" CMD="php artisan optimize"
( [ -n "${USE_SU}" ] && su ${SITE_USER} -s /bin/sh -c "${CMD}" ) || ${CMD} ( [ -n "${USE_SU}" ] && su ${SITE_USER} -s /bin/sh -c "${CMD}" ) || ${CMD}