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

@ -658,6 +658,16 @@ RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \
docker-php-ext-enable imagick \
;fi
###########################################################################
# SMB:
###########################################################################
ARG INSTALL_SMB=false
RUN if [ ${INSTALL_SMB} = true ]; then \
apt-get install -y smbclient php-smbclient coreutils \
;fi
###########################################################################
# IMAP:
###########################################################################