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