From a123e14a048d655d4a0231a9722d6bb2353ca3d0 Mon Sep 17 00:00:00 2001 From: Romain Fluttaz Date: Thu, 25 Oct 2018 20:26:30 +0000 Subject: [PATCH] Separate pecl install and other ext. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d499309..c97c62c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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; \