From 54ef040deaafc10b4f8f9119174e7832e763223e Mon Sep 17 00:00:00 2001 From: Rafael Mello Date: Mon, 4 Apr 2016 22:15:10 -0300 Subject: [PATCH] APCu BC added --- 7.0/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/7.0/Dockerfile b/7.0/Dockerfile index 20b926f..ae2cec9 100644 --- a/7.0/Dockerfile +++ b/7.0/Dockerfile @@ -51,6 +51,7 @@ RUN curl -sS https://getcomposer.org/installer | php -- \ RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \ && echo 'instantclient,/opt/oracle/instantclient_12_1/' | pecl install oci8 \ && pecl install apcu \ + && pecl install apcu_bc-beta \ && git clone https://github.com/phpredis/phpredis /usr/src/php/ext/redis \ && cd /usr/src/php/ext/redis && git checkout -b php7 origin/php7 \ && docker-php-ext-configure redis \ @@ -80,6 +81,7 @@ RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-di && docker-php-ext-enable \ oci8 \ apcu \ + apc \ opcache # Clean repository