From b1b4c5e83faaa8c4c1d421e216cac96d2ea2f375 Mon Sep 17 00:00:00 2001 From: Didier 'OdyX' Raboud Date: Mon, 9 Jan 2023 11:30:15 +0100 Subject: [PATCH] Add PHP opcache extension Fixes https://github.com/tuxgasy/docker-dolibarr/issues/99 --- images/11.0.5-php7.4/Dockerfile | 2 +- images/12.0.5-php7.4/Dockerfile | 2 +- images/13.0.4-php7.4/Dockerfile | 2 +- images/14.0.5-php7.4/Dockerfile | 2 +- images/15.0.3-php7.4/Dockerfile | 2 +- images/16.0.3-php8.1/Dockerfile | 2 +- images/develop/Dockerfile | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/images/11.0.5-php7.4/Dockerfile b/images/11.0.5-php7.4/Dockerfile index cefe395..cdd8d2d 100644 --- a/images/11.0.5-php7.4/Dockerfile +++ b/images/11.0.5-php7.4/Dockerfile @@ -52,7 +52,7 @@ RUN apt-get update -y \ cron \ && apt-get autoremove -y \ && docker-php-ext-configure gd --with-freetype --with-jpeg \ - && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd soap zip \ + && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd opcache soap zip \ && docker-php-ext-configure pgsql -with-pgsql \ && docker-php-ext-install pdo_pgsql pgsql \ && docker-php-ext-configure ldap --with-libdir=lib/$(gcc -dumpmachine)/ \ diff --git a/images/12.0.5-php7.4/Dockerfile b/images/12.0.5-php7.4/Dockerfile index 7abb300..780ddce 100644 --- a/images/12.0.5-php7.4/Dockerfile +++ b/images/12.0.5-php7.4/Dockerfile @@ -52,7 +52,7 @@ RUN apt-get update -y \ cron \ && apt-get autoremove -y \ && docker-php-ext-configure gd --with-freetype --with-jpeg \ - && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd soap zip \ + && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd opcache soap zip \ && docker-php-ext-configure pgsql -with-pgsql \ && docker-php-ext-install pdo_pgsql pgsql \ && docker-php-ext-configure ldap --with-libdir=lib/$(gcc -dumpmachine)/ \ diff --git a/images/13.0.4-php7.4/Dockerfile b/images/13.0.4-php7.4/Dockerfile index 98a87c2..76e64a3 100644 --- a/images/13.0.4-php7.4/Dockerfile +++ b/images/13.0.4-php7.4/Dockerfile @@ -52,7 +52,7 @@ RUN apt-get update -y \ cron \ && apt-get autoremove -y \ && docker-php-ext-configure gd --with-freetype --with-jpeg \ - && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd soap zip \ + && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd opcache soap zip \ && docker-php-ext-configure pgsql -with-pgsql \ && docker-php-ext-install pdo_pgsql pgsql \ && docker-php-ext-configure ldap --with-libdir=lib/$(gcc -dumpmachine)/ \ diff --git a/images/14.0.5-php7.4/Dockerfile b/images/14.0.5-php7.4/Dockerfile index 83ca823..43f3511 100644 --- a/images/14.0.5-php7.4/Dockerfile +++ b/images/14.0.5-php7.4/Dockerfile @@ -52,7 +52,7 @@ RUN apt-get update -y \ cron \ && apt-get autoremove -y \ && docker-php-ext-configure gd --with-freetype --with-jpeg \ - && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd soap zip \ + && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd opcache soap zip \ && docker-php-ext-configure pgsql -with-pgsql \ && docker-php-ext-install pdo_pgsql pgsql \ && docker-php-ext-configure ldap --with-libdir=lib/$(gcc -dumpmachine)/ \ diff --git a/images/15.0.3-php7.4/Dockerfile b/images/15.0.3-php7.4/Dockerfile index 8fea033..290c427 100644 --- a/images/15.0.3-php7.4/Dockerfile +++ b/images/15.0.3-php7.4/Dockerfile @@ -52,7 +52,7 @@ RUN apt-get update -y \ cron \ && apt-get autoremove -y \ && docker-php-ext-configure gd --with-freetype --with-jpeg \ - && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd soap zip \ + && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd opcache soap zip \ && docker-php-ext-configure pgsql -with-pgsql \ && docker-php-ext-install pdo_pgsql pgsql \ && docker-php-ext-configure ldap --with-libdir=lib/$(gcc -dumpmachine)/ \ diff --git a/images/16.0.3-php8.1/Dockerfile b/images/16.0.3-php8.1/Dockerfile index 2234b11..db38d5c 100644 --- a/images/16.0.3-php8.1/Dockerfile +++ b/images/16.0.3-php8.1/Dockerfile @@ -52,7 +52,7 @@ RUN apt-get update -y \ cron \ && apt-get autoremove -y \ && docker-php-ext-configure gd --with-freetype --with-jpeg \ - && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd soap zip \ + && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd opcache soap zip \ && docker-php-ext-configure pgsql -with-pgsql \ && docker-php-ext-install pdo_pgsql pgsql \ && docker-php-ext-configure ldap --with-libdir=lib/$(gcc -dumpmachine)/ \ diff --git a/images/develop/Dockerfile b/images/develop/Dockerfile index cd7f3e3..4797f5e 100644 --- a/images/develop/Dockerfile +++ b/images/develop/Dockerfile @@ -52,7 +52,7 @@ RUN apt-get update -y \ cron \ && apt-get autoremove -y \ && docker-php-ext-configure gd --with-freetype --with-jpeg \ - && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd soap zip \ + && docker-php-ext-install -j$(nproc) calendar intl mysqli pdo_mysql gd opcache soap zip \ && docker-php-ext-configure pgsql -with-pgsql \ && docker-php-ext-install pdo_pgsql pgsql \ && docker-php-ext-configure ldap --with-libdir=lib/$(gcc -dumpmachine)/ \