1
0
Fork 0
mirror of synced 2024-05-17 19:22:34 +12:00

fix zstd build

This commit is contained in:
Damodar Lohani 2022-08-31 13:21:52 +00:00
parent 8fe365d66e
commit 5900387237

View file

@ -127,8 +127,9 @@ RUN \
# Zstd Compression
FROM compile as zstd
RUN git clone --recursive --depth 1 --branch $PHP_ZSTD_VERSION https://github.com/kjdev/php-ext-zstd.git \
RUN git clone --recursive -n https://github.com/kjdev/php-ext-zstd.git \
&& cd php-ext-zstd \
&& git checkout $PHP_ZSTD_VERSION \
&& phpize \
&& ./configure --with-libzstd \
&& make && make install