Эх сурвалжийг харах

Merge pull request #785 from winfried-van-loon/690-php-fpm-intl

Fixing INTL ext in php-fpm for php71
Mahmoud Zalt 8 жил өмнө
parent
commit
a35287b367
1 өөрчлөгдсөн 2 нэмэгдсэн , 2 устгасан
  1. 2 2
      php-fpm/Dockerfile-71

+ 2 - 2
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 && \