provide smbclient and php-smbclient to php-fpm and workspace containers

This commit is contained in:
Justin Seliga
2019-12-27 19:34:56 -05:00
parent f64360ab74
commit 9aecc53dba
4 changed files with 24 additions and 0 deletions

View File

@ -298,6 +298,16 @@ RUN if [ ${INSTALL_LDAP} = true ]; then \
apt-get install -y php${LARADOCK_PHP_VERSION}-ldap \
;fi
###########################################################################
# SMB:
###########################################################################
ARG INSTALL_SMB=false
RUN if [ ${INSTALL_SMB} = true ]; then \
apt-get install -y smbclient php-smbclient coreutils \
;fi
###########################################################################
# IMAP:
###########################################################################