File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -130,13 +130,19 @@ RUN if [ ${INSTALL_OPCACHE} = true ]; then \
130130COPY ./opcache.ini /usr/local/etc/php/conf.d/opcache.ini
131131
132132#####################################
133- # Codeigniter Modifications:
133+ # Mysqli Modifications:
134+ #####################################
135+ ARG INSTALL_MYSQLI=false
136+ RUN if [ ${INSTALL_MYSQLI} = true ]; then \
137+ docker-php-ext-install mysqli \
138+ ;fi
139+
140+ #####################################
141+ # Tokenizer Modifications:
134142#####################################
135143
136- ARG CODEIGNITER=false
137- RUN if [ ${CODEIGNITER} = true ]; then \
138- # Install Codeigniter PHP extentions requirements
139- docker-php-ext-install mysqli && \
144+ ARG INSTALL_TOKENIZER=false
145+ RUN if [ ${INSTALL_TOKENIZER} = true ]; then \
140146 docker-php-ext-install tokenizer \
141147;fi
142148
You can’t perform that action at this time.
0 commit comments