From 2a81fed7b3c00546e7920a8fe5246d4ec2464e20 Mon Sep 17 00:00:00 2001 From: Matthieu Poletti Date: Sun, 1 Nov 2020 06:13:43 +0200 Subject: [PATCH] remove redis pecl extension --- caddy2/php5.6/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/caddy2/php5.6/Dockerfile b/caddy2/php5.6/Dockerfile index 7929875..1de5b8b 100644 --- a/caddy2/php5.6/Dockerfile +++ b/caddy2/php5.6/Dockerfile @@ -30,14 +30,14 @@ ENV PHP_EXTENSIONS \ pdo_pgsql \ xsl -ENV PECL_EXTENSIONS \ - redis +#ENV PECL_EXTENSIONS \ +# redis RUN apk add --no-cache --virtual .build-deps $BUILD_DEPS \ && docker-php-ext-configure gd --with-jpeg \ - && pecl install $PECL_EXTENSIONS \ +# && pecl install $PECL_EXTENSIONS \ && docker-php-ext-install -j "$(nproc)" $PHP_EXTENSIONS \ - && docker-php-ext-enable $PECL_EXTENSIONS \ +# && docker-php-ext-enable $PECL_EXTENSIONS \ && apk del .build-deps RUN apk add --no-cache --virtual .run-deps $RUN_DEPS