From 86de417427d524ae5eaa5295e1c49d4771aecca7 Mon Sep 17 00:00:00 2001 From: Finley Ghosh Date: Tue, 12 Aug 2025 21:04:51 +1000 Subject: [PATCH] Installing common tools for the container --- Dockerfile_stg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile_stg b/Dockerfile_stg index f449e6fb..6ca1bfa9 100644 --- a/Dockerfile_stg +++ b/Dockerfile_stg @@ -1,7 +1,11 @@ + # Use the official PHP 5.6 Apache image for classic mod_php FROM php:5.6-apache +# Install legacy mysql extension and other common PHP extensions for CakePHP +RUN docker-php-ext-install mysql mbstring gd curl imap + # Set environment variables. ENV HOME /root