1
0
Fork 0
mirror of synced 2024-06-03 03:14:50 +12:00

Updated gzip compression

This commit is contained in:
Eldad Fux 2020-07-20 20:16:26 +03:00
parent 1bcea96f67
commit 1c18826f0c

View file

@ -21,7 +21,7 @@ ENV TZ=Asia/Tel_Aviv \
PHP_XDEBUG_VERSION=sdebug_2_9-beta PHP_XDEBUG_VERSION=sdebug_2_9-beta
RUN \ RUN \
apk add \ apk add --no-cache --virtual .deps \
make \ make \
automake \ automake \
autoconf \ autoconf \
@ -30,6 +30,7 @@ RUN \
tar \ tar \
wget \ wget \
git \ git \
zlib-dev \
brotli brotli
#ca-certificates \ #ca-certificates \
@ -98,7 +99,7 @@ ENV TZ=Asia/Tel_Aviv \
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN \ RUN \
apk update && apk add \ apk update && apk add --no-cache --virtual .deps \
make \ make \
automake \ automake \
autoconf \ autoconf \
@ -113,8 +114,6 @@ RUN \
curl-dev \ curl-dev \
imagemagick-dev \ imagemagick-dev \
yaml-dev \ yaml-dev \
brotli \
zlib-dev \
&& pecl install imagick yaml \ && pecl install imagick yaml \
&& docker-php-ext-enable imagick yaml && docker-php-ext-enable imagick yaml