Added extensions: lz4, lzf and zstd

This commit is contained in:
cytopia
2022-12-01 09:22:45 +01:00
parent c64e92e94e
commit f2d1e41377
28 changed files with 983 additions and 48 deletions

View File

@@ -22,6 +22,8 @@ RUN set -eux \
libjpeg-dev \
libkrb5-dev \
libldap2-dev \
liblz4-dev \
liblzf-dev \
libmagic-dev \
libmcrypt-dev \
libmemcached-dev \
@@ -41,6 +43,7 @@ RUN set -eux \
libxpm-dev \
libxslt-dev \
libzip-dev \
libzstd-dev \
snmp \
zlib1g-dev \
# Build tools
@@ -384,6 +387,11 @@ RUN set -eux \
# -------------------- Installing PHP Extension: redis --------------------
RUN set -eux \
# Generic pre-command
&& if [ -f /usr/include/liblzf/lzf.h ]; then \
ln -s /usr/include/liblzf/lzf.h /usr/include/; \
fi \
\
# Installation: Version specific
# Type: PECL extension
# Default: Pecl command
@@ -595,6 +603,8 @@ RUN set -eux \
libfreetype6 \
libicu52 \
libjpeg62-turbo \
liblz4-1 \
liblzf1 \
libmagic1 \
libmcrypt4 \
libmemcachedutil2 \
@@ -610,6 +620,7 @@ RUN set -eux \
libxpm4 \
libxslt1.1 \
libzip2 \
libzstd1 \
snmp \
ca-certificates \
&& rm -rf /var/lib/apt/lists/* \