- remove igbinary from php 7.4 container

* rearrange RUNs in workspace - NODE install to last
This commit is contained in:
2021-01-13 22:07:39 +03:00
parent c57f3421e4
commit e252554642
3 changed files with 46 additions and 92 deletions

View File

@ -36,19 +36,6 @@ RUN sed -i "s/xdebug.remote_autostart=0/xdebug.remote_autostart=1/" /usr/local/e
sed -i "s/xdebug.remote_enable=0/xdebug.remote_enable=1/" /usr/local/etc/php/conf.d/xdebug.ini && \
sed -i "s/xdebug.cli_color=0/xdebug.cli_color=1/" /usr/local/etc/php/conf.d/xdebug.ini
###########################################################################
# Redis and igbinary:
###########################################################################
ARG INSTALL_REDIS=false
RUN if [ ${INSTALL_REDIS} = true ]; then \
pecl install igbinary \
&& pecl install -a redis \
&& docker-php-ext-enable igbinary redis \
;fi
###########################################################################
# Zip:
###########################################################################
@ -62,16 +49,6 @@ RUN if [ ${INSTALL_ZIP} = true ]; then \
;fi
###########################################################################
# Pear Mail and Mail_Mime:
###########################################################################
ARG INSTALL_PEAR_MAIL=false
RUN if [ ${INSTALL_PEAR_MAIL} = true ]; then \
pear install Mail && pear install Mail_Mime \
;fi
###########################################################################
# BZ2 function:
###########################################################################