Drop the useless PHP tokenizer extension install step (#1650)

It is bundled and enabled by default in the PHP language already, and adding this step raises a warning:
warning: tokenizer (tokenizer.so) is already loaded!

Also if this option disabled, it's still installed as part of the language anyway!
This commit is contained in:
Abdelrahman Omran
2018-11-13 16:30:41 +04:00
committed by Shao Yu-Lung (Allen)
parent 876336bc1a
commit 1dac382827
3 changed files with 0 additions and 11 deletions

View File

@ -392,15 +392,6 @@ RUN if [ ${INSTALL_MYSQLI} = true ]; then \
docker-php-ext-install mysqli \
;fi
###########################################################################
# Tokenizer Modifications:
###########################################################################
ARG INSTALL_TOKENIZER=false
RUN if [ ${INSTALL_TOKENIZER} = true ]; then \
docker-php-ext-install tokenizer \
;fi
###########################################################################
# Human Language and Character Encoding Support: