Update Dockerfile-56
This commit is contained in:
		@@ -41,7 +41,6 @@ MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
 | 
				
			|||||||
#####################################
 | 
					#####################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ARG INSTALL_XDEBUG=true
 | 
					ARG INSTALL_XDEBUG=true
 | 
				
			||||||
ENV INSTALL_XDEBUG ${INSTALL_XDEBUG}
 | 
					 | 
				
			||||||
RUN if [ ${INSTALL_XDEBUG} = true ]; then \
 | 
					RUN if [ ${INSTALL_XDEBUG} = true ]; then \
 | 
				
			||||||
    # Install the xdebug extension
 | 
					    # Install the xdebug extension
 | 
				
			||||||
    pecl install xdebug && \
 | 
					    pecl install xdebug && \
 | 
				
			||||||
@@ -56,7 +55,6 @@ COPY ./xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
 | 
				
			|||||||
#####################################
 | 
					#####################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ARG INSTALL_MONGO=true
 | 
					ARG INSTALL_MONGO=true
 | 
				
			||||||
ENV INSTALL_MONGO ${INSTALL_MONGO}
 | 
					 | 
				
			||||||
RUN if [ ${INSTALL_MONGO} = true ]; then \
 | 
					RUN if [ ${INSTALL_MONGO} = true ]; then \
 | 
				
			||||||
    # Install the mongodb extension
 | 
					    # Install the mongodb extension
 | 
				
			||||||
    pecl install mongodb && \
 | 
					    pecl install mongodb && \
 | 
				
			||||||
@@ -68,7 +66,6 @@ RUN if [ ${INSTALL_MONGO} = true ]; then \
 | 
				
			|||||||
#####################################
 | 
					#####################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ARG INSTALL_ZIP_ARCHIVE=true
 | 
					ARG INSTALL_ZIP_ARCHIVE=true
 | 
				
			||||||
ENV INSTALL_ZIP_ARCHIVE ${INSTALL_ZIP_ARCHIVE}
 | 
					 | 
				
			||||||
RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
 | 
					RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
 | 
				
			||||||
    # Install the zip extension
 | 
					    # Install the zip extension
 | 
				
			||||||
    pecl install zip && \
 | 
					    pecl install zip && \
 | 
				
			||||||
@@ -80,7 +77,6 @@ RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
 | 
				
			|||||||
#####################################
 | 
					#####################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ARG INSTALL_MEMCACHED=true
 | 
					ARG INSTALL_MEMCACHED=true
 | 
				
			||||||
ENV INSTALL_MEMCACHED ${INSTALL_MEMCACHED}
 | 
					 | 
				
			||||||
RUN if [ ${INSTALL_MEMCACHED} = true ]; then \
 | 
					RUN if [ ${INSTALL_MEMCACHED} = true ]; then \
 | 
				
			||||||
    # Install the php memcached extension
 | 
					    # Install the php memcached extension
 | 
				
			||||||
    pecl install memcached && \
 | 
					    pecl install memcached && \
 | 
				
			||||||
@@ -91,7 +87,6 @@ RUN if [ ${INSTALL_MEMCACHED} = true ]; then \
 | 
				
			|||||||
# Opcache:
 | 
					# Opcache:
 | 
				
			||||||
#####################################
 | 
					#####################################
 | 
				
			||||||
ARG INSTALL_OPCACHE=true
 | 
					ARG INSTALL_OPCACHE=true
 | 
				
			||||||
ENV INSTALL_OPCACHE ${INSTALL_OPCACHE}
 | 
					 | 
				
			||||||
RUN if [ ${INSTALL_OPCACHE} = true ]; then \
 | 
					RUN if [ ${INSTALL_OPCACHE} = true ]; then \
 | 
				
			||||||
    docker-php-ext-install opcache && \
 | 
					    docker-php-ext-install opcache && \
 | 
				
			||||||
    docker-php-ext-enable opcache \
 | 
					    docker-php-ext-enable opcache \
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user