This commit is contained in:
Adrian Hopek
2022-03-07 11:31:34 +01:00
parent 3a1b9862c1
commit 5d64ad9d2a
7 changed files with 41 additions and 43 deletions

View File

@@ -9,14 +9,16 @@ RUN if [ ${INSTALL_XDEBUG} = true ]; then \
&& docker-php-ext-enable xdebug \
;fi
RUN pecl install redis \
&& apk --no-cache add \
RUN apk add --no-cache pcre-dev $PHPIZE_DEPS \
postgresql-dev \
zip \
libzip-dev \
libpng-dev \
&& pecl install redis \
&& docker-php-ext-install \
pdo_pgsql \
zip \
gd \
&& docker-php-ext-configure \
zip \
&& docker-php-ext-enable \