Skip to content

Commit a35287b

Browse files
authored
Merge pull request laradock#785 from winfried-van-loon/690-php-fpm-intl
Fixing INTL ext in php-fpm for php71
2 parents ddabb46 + 4b91fb1 commit a35287b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

php-fpm/Dockerfile-71

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ RUN if [ ${INSTALL_TOKENIZER} = true ]; then \
149149
# Human Language and Character Encoding Support:
150150
#####################################
151151

152-
ARG INTL=false
153-
RUN if [ ${INTL} = true ]; then \
152+
ARG INSTALL_INTL=false
153+
RUN if [ ${INSTALL_INTL} = true ]; then \
154154
# Install intl and requirements
155155
apt-get install -y zlib1g-dev libicu-dev g++ && \
156156
docker-php-ext-configure intl && \

0 commit comments

Comments
 (0)