remove redis pecl extension

This commit is contained in:
Matthieu Poletti 2020-11-01 06:13:43 +02:00
parent c5895a3e9c
commit 2a81fed7b3

View File

@ -30,14 +30,14 @@ ENV PHP_EXTENSIONS \
pdo_pgsql \ pdo_pgsql \
xsl xsl
ENV PECL_EXTENSIONS \ #ENV PECL_EXTENSIONS \
redis # redis
RUN apk add --no-cache --virtual .build-deps $BUILD_DEPS \ RUN apk add --no-cache --virtual .build-deps $BUILD_DEPS \
&& docker-php-ext-configure gd --with-jpeg \ && 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-install -j "$(nproc)" $PHP_EXTENSIONS \
&& docker-php-ext-enable $PECL_EXTENSIONS \ # && docker-php-ext-enable $PECL_EXTENSIONS \
&& apk del .build-deps && apk del .build-deps
RUN apk add --no-cache --virtual .run-deps $RUN_DEPS RUN apk add --no-cache --virtual .run-deps $RUN_DEPS