Merge pull request #1533 from kaliberx/master

Add subversion support in workspace
This commit is contained in:
Shao Yu-Lung (Allen)
2018-05-25 22:10:58 +08:00
committed by GitHub
3 changed files with 15 additions and 0 deletions

View File

@ -182,6 +182,19 @@ RUN if [ ${INSTALL_IMAP} = true ]; then \
apt-get install -y php${PHP_VERSION}-imap \
;fi
###########################################################################
# Subversion:
###########################################################################
USER root
ARG INSTALL_SUBVERSION=false
RUN if [ ${INSTALL_SUBVERSION} = true ]; then \
apt-get install -y subversion \
;fi
###########################################################################
# xDebug:
###########################################################################