php ext bz2 (#2500)

* php ext bz2
* fix typo
* fix php-fpm bz2 ext
* fix horizon bz2 ext
This commit is contained in:
Shao Yu-Lung (Allen)
2020-02-11 23:56:58 +08:00
committed by GitHub
parent b2ae5f6d44
commit f8b7404263
6 changed files with 41 additions and 0 deletions

View File

@ -232,6 +232,15 @@ RUN if [ ${INSTALL_WP_CLI} = true ]; then \
chmod +x /usr/local/bin/wp \
;fi
###########################################################################
# BZ2:
###########################################################################
ARG INSTALL_BZ2=false
RUN if [ ${INSTALL_BZ2} = true ]; then \
apt-get -y install php${LARADOCK_PHP_VERSION}-bz2 \
;fi
###########################################################################
# SSH2:
###########################################################################