Merge pull request #2908 from laradock/gnupg

php extension Support GnuPG
This commit is contained in:
Shao Yu-Lung (Allen)
2021-03-21 22:24:59 +08:00
committed by GitHub
7 changed files with 69 additions and 1 deletions

View File

@ -270,6 +270,16 @@ RUN if [ ${INSTALL_GMP} = true ]; then \
apt-get -y install php${LARADOCK_PHP_VERSION}-gmp \
;fi
###########################################################################
# GnuPG:
###########################################################################
ARG INSTALL_GNUPG=false
RUN if [ ${INSTALL_GNUPG} = true ]; then \
apt-get install -yqq php${LARADOCK_PHP_VERSION}-gnupg; \
fi
###########################################################################
# SSH2:
###########################################################################