[DOCKER] Add msgpack and redis extensions to docker image

This commit is contained in:
Hugo Sales 2020-07-11 22:41:52 +00:00 committed by Hugo Sales
parent cfe1901b51
commit d35b6f3437
Signed by untrusted user: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 7 additions and 8 deletions

View File

@ -6,17 +6,16 @@ RUN apk update && apk add git gettext-dev icu-dev zlib-dev libpng-dev gmp-dev \
ARG exts=" bcmath exif gd gettext gmp intl mysqli opcache pdo pdo_mysql mysqli pdo_pgsql pgsql"
RUN apk add --virtual .phpize-deps $PHPIZE_DEPS \
&& cd /tmp \
&& git clone https://github.com/php-ds/ext-ds \
&& cd ext-ds \
&& phpize \
&& ./configure \
&& make \
&& make install \
&& cd /tmp && git clone https://github.com/php-ds/ext-ds && cd ext-ds \
&& phpize && ./configure && make && make install \
&& cd /tmp && git clone https://github.com/msgpack/msgpack-php && cd msgpack-php \
&& phpize && ./configure && make && make install \
&& cd /tmp && git clone https://github.com/phpredis/phpredis && cd phpredis \
&& phpize && ./configure --enable-redis-msgpack --enable-redis-lzf && make && make install \
&& rm -rf /usr/share/php7 \
&& rm -rf /tmp/* \
&& apk del .phpize-deps > /dev/null
RUN docker-php-ext-install ${exts} && docker-php-ext-enable ds
RUN docker-php-ext-install ${exts} && docker-php-ext-enable ds msgpack redis
WORKDIR /var/www/social