Skip to content

Commit 4b91fb1

Browse files
Fixing INTL ext in php-fpm for php71
1 parent d51cd31 commit 4b91fb1

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)