Added support for brotli

pull/1/head
Eduardo Balsa 2021-04-14 14:13:37 +02:00
parent a3074400e0
commit 3a3f0637e4
1 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@ FROM debian:buster-slim as php-build
php-dev \
php-pear \
librdkafka-dev \
git \
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
RUN pecl channel-update pecl.php.net
@ -117,6 +118,7 @@ ARG PHP_VER
php-fpm \
php-zip \
librdkafka1 \
libbrotli1 \
# Unsure we need these
zip unzip \
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*