Added ZSTD

This commit is contained in:
Deon George 2022-10-21 09:29:00 +11:00
parent 26c30cb5cb
commit 2ce07e2c9a
1 changed files with 3 additions and 0 deletions

View File

@ -73,6 +73,9 @@ RUN apt-get -y update \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/* /tmp/*
# Add zstd
RUN pecl install -o -f zstd && docker-php-ext-enable zstd
COPY init /sbin/
RUN chmod 550 /sbin/init && chown 0:0 /sbin/init
ENTRYPOINT [ "/sbin/init" ]