prod #123

Merged
finley merged 122 commits from prod into master 2025-11-22 17:52:40 -08:00
Showing only changes of commit 6b801822fd - Show all commits

View file

@ -3,8 +3,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
# Install required system libraries and PHP extensions for CakePHP
RUN apt-get update && \
apt-get install -y libpng-dev libjpeg-dev libfreetype6-dev libcurl4-openssl-dev libxml2-dev libssl-dev libmcrypt-dev libicu-dev libkrb5-dev && \
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && \
docker-php-ext-install mysql mbstring gd curl imap
# Set environment variables.
ENV HOME /root