Fixing INTL ext in php-fpm for php71

This commit is contained in:
Winfried 2017-04-11 16:42:27 +02:00
parent d51cd31ebc
commit 4b91fb1212

View File

@ -149,8 +149,8 @@ RUN if [ ${INSTALL_TOKENIZER} = true ]; then \
# Human Language and Character Encoding Support: # Human Language and Character Encoding Support:
##################################### #####################################
ARG INTL=false ARG INSTALL_INTL=false
RUN if [ ${INTL} = true ]; then \ RUN if [ ${INSTALL_INTL} = true ]; then \
# Install intl and requirements # Install intl and requirements
apt-get install -y zlib1g-dev libicu-dev g++ && \ apt-get install -y zlib1g-dev libicu-dev g++ && \
docker-php-ext-configure intl && \ docker-php-ext-configure intl && \