File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ services:
4848 context : ./workspace
4949 args :
5050 - PHP_VERSION=${PHP_VERSION}
51+ - INSTALL_SUBVERSION=${WORKSPACE_INSTALL_SUBVERSION}
5152 - INSTALL_XDEBUG=${WORKSPACE_INSTALL_XDEBUG}
5253 - INSTALL_BLACKFIRE=${INSTALL_BLACKFIRE}
5354 - INSTALL_SOAP=${WORKSPACE_INSTALL_SOAP}
Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ WORKSPACE_INSTALL_YARN=true
8080WORKSPACE_YARN_VERSION=latest
8181WORKSPACE_INSTALL_PHPREDIS=true
8282WORKSPACE_INSTALL_WORKSPACE_SSH=false
83+ WORKSPACE_INSTALL_SUBVERSION=false
8384WORKSPACE_INSTALL_XDEBUG=false
8485WORKSPACE_INSTALL_LDAP=false
8586WORKSPACE_INSTALL_SOAP=false
Original file line number Diff line number Diff line change @@ -182,6 +182,19 @@ RUN if [ ${INSTALL_IMAP} = true ]; then \
182182 apt-get install -y php${PHP_VERSION}-imap \
183183;fi
184184
185+ # ##########################################################################
186+ # Subversion:
187+ # ##########################################################################
188+
189+ USER root
190+
191+ ARG INSTALL_SUBVERSION=false
192+
193+ RUN if [ ${INSTALL_SUBVERSION} = true ]; then \
194+ apt-get install -y subversion \
195+ ;fi
196+
197+
185198# ##########################################################################
186199# xDebug:
187200# ##########################################################################
You can’t perform that action at this time.
0 commit comments