Separate pecl install and other ext.

This commit is contained in:
Romain Fluttaz 2018-10-25 20:26:30 +00:00
parent 1cdc9865c0
commit a123e14a04
1 changed files with 2 additions and 1 deletions

View File

@ -19,9 +19,10 @@ RUN set -ex; \
\
pecl install apcu; \
pecl install yaml; \
docker-php-ext-install apcu yaml; \
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/; \
docker-php-ext-install gd mysqli opcache zip ldap apcu yaml; \
docker-php-ext-install gd mysqli opcache zip ldap; \
\
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
apt-mark auto '.*' > /dev/null; \