From 6904859911f02402f82112456821cc40cae21493 Mon Sep 17 00:00:00 2001 From: Bas Zoetekouw Date: Wed, 14 Aug 2024 12:14:55 +0200 Subject: [PATCH] loading order of apc module is important --- php72-apache2/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/php72-apache2/Dockerfile b/php72-apache2/Dockerfile index cab4de6..4fde232 100644 --- a/php72-apache2/Dockerfile +++ b/php72-apache2/Dockerfile @@ -32,7 +32,8 @@ RUN docker-php-ext-install soap \ # Use pecl to install acpu RUN pecl install -f apcu && \ pecl install -f apcu_bc -COPY ./conf/apcu.ini ./conf/apc.ini /usr/local/etc/php/conf.d/ +COPY ./conf/apcu.ini /usr/local/etc/php/conf.d/91-apcu.ini +COPY ./conf/apc.ini /usr/local/etc/php/conf.d/92-acp.ini # Enable the Apache2 modules we need RUN a2enmod rewrite headers expires proxy_fcgi remoteip