From 4b91fb1212ee24c8379237c5566343c39c2b4d49 Mon Sep 17 00:00:00 2001 From: Winfried Date: Tue, 11 Apr 2017 16:42:27 +0200 Subject: [PATCH] Fixing INTL ext in php-fpm for php71 --- php-fpm/Dockerfile-71 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 94beab02..f54cc2a4 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -149,8 +149,8 @@ RUN if [ ${INSTALL_TOKENIZER} = true ]; then \ # Human Language and Character Encoding Support: ##################################### -ARG INTL=false -RUN if [ ${INTL} = true ]; then \ +ARG INSTALL_INTL=false +RUN if [ ${INSTALL_INTL} = true ]; then \ # Install intl and requirements apt-get install -y zlib1g-dev libicu-dev g++ && \ docker-php-ext-configure intl && \