Merge pull request #12 from Nemo64/opcache

added opcache to extension list in php 5.5+
This commit is contained in:
Paolo Cuffiani
2017-05-04 11:33:38 +02:00
committed by GitHub
15 changed files with 23 additions and 13 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ RUN buildDeps=" \
libpq-dev \
" \
&& apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y $buildDeps $runtimeDeps \
&& docker-php-ext-install bz2 calendar iconv intl mbstring mcrypt mysqli pdo_mysql pdo_pgsql pgsql zip \
&& docker-php-ext-install bz2 calendar iconv intl mbstring mcrypt mysqli opcache pdo_mysql pdo_pgsql pgsql zip \
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
&& docker-php-ext-install gd \
&& pecl install memcached redis \