added ssh2 to workspace and php-fpm (#1756)

This commit is contained in:
vladyslavstartsev
2018-08-28 09:16:25 +03:00
committed by Shao Yu-Lung (Allen)
parent 947a791ad2
commit 39469e1404
4 changed files with 34 additions and 0 deletions

View File

@ -174,6 +174,19 @@ RUN if [ ${INSTALL_DRUSH} = true ]; then \
drush core-status \
;fi
###########################################################################
# SSH2:
###########################################################################
USER root
ARG INSTALL_SSH2=false
RUN if [ ${INSTALL_SSH2} = true ]; then \
# Install the PHP SSH2 extension
apt-get -y install libssh2-1-dev php${LARADOCK_PHP_VERSION}-ssh2 \
;fi
###########################################################################
# SOAP:
###########################################################################