@@ -41,7 +41,6 @@ MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
4141#####################################
4242
4343ARG INSTALL_XDEBUG=true
44- ENV INSTALL_XDEBUG ${INSTALL_XDEBUG}
4544RUN if [ ${INSTALL_XDEBUG} = true ]; then \
4645 # Install the xdebug extension
4746 pecl install xdebug && \
@@ -56,7 +55,6 @@ COPY ./xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
5655#####################################
5756
5857ARG INSTALL_MONGO=true
59- ENV INSTALL_MONGO ${INSTALL_MONGO}
6058RUN if [ ${INSTALL_MONGO} = true ]; then \
6159 # Install the mongodb extension
6260 pecl install mongodb && \
@@ -68,7 +66,6 @@ RUN if [ ${INSTALL_MONGO} = true ]; then \
6866#####################################
6967
7068ARG INSTALL_ZIP_ARCHIVE=true
71- ENV INSTALL_ZIP_ARCHIVE ${INSTALL_ZIP_ARCHIVE}
7269RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
7370 # Install the zip extension
7471 pecl install zip && \
@@ -80,7 +77,6 @@ RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
8077#####################################
8178
8279ARG INSTALL_MEMCACHED=true
83- ENV INSTALL_MEMCACHED ${INSTALL_MEMCACHED}
8480RUN if [ ${INSTALL_MEMCACHED} = true ]; then \
8581 # Install the php memcached extension
8682 pecl install memcached && \
@@ -91,7 +87,6 @@ RUN if [ ${INSTALL_MEMCACHED} = true ]; then \
9187# Opcache:
9288#####################################
9389ARG INSTALL_OPCACHE=true
94- ENV INSTALL_OPCACHE ${INSTALL_OPCACHE}
9590RUN if [ ${INSTALL_OPCACHE} = true ]; then \
9691 docker-php-ext-install opcache && \
9792 docker-php-ext-enable opcache \
0 commit comments