Compare commits

..

1 Commits

Author SHA1 Message Date
Deon George
30ddb87a9e PHP 8.4 install mysql module
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m0s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 2m53s
Create Docker Image / Final Docker Image Manifest (push) Successful in 11s
Create Docker Image / Build Docker Test Image (x86_64) (push) Successful in 59s
Create Docker Image / Final Docker Test Image Manifest (push) Successful in 11s
2025-02-13 12:48:18 +11:00

View File

@ -46,13 +46,6 @@ if [ -x /usr/bin/memcached -a "${MEMCACHED_START}" == "TRUE" ]; then
/usr/bin/memcached -d -P /run/memcached/memcached.pid -u memcached
fi
# If we are local, then disable the opcache
if [ "${ENV}" != "production" -a ! -e ${PHP_DIR}/pprepend.php ]; then
echo "* Automatically disabling opcache as environment is not production [${ENV}]"
echo "<?php ini_set('opcache.enable',false);" > ${PHP_DIR}/prepend.php
sed -i -e s"#auto_prepend_file =#auto_prepend_file=${PHP_DIR}/prepend.php#" /usr/local/etc/php/php.ini
fi
# Laravel Specific
if [ -r artisan -a -e ${php}/.env ]; then
echo "* Laravel Setup..."