MySQL Client in Workspace (#1892)

This commit is contained in:
Mike P. Sinn
2018-11-27 02:59:14 -06:00
committed by Shao Yu-Lung (Allen)
parent fa7d3c239c
commit 2689638d7d
3 changed files with 15 additions and 0 deletions

View File

@ -877,6 +877,19 @@ RUN if [ $INSTALL_PHALCON = true ]; then \
&& rm -rf /tmp/cphalcon* \
;fi
###########################################################################
# MySQL Client:
###########################################################################
USER root
ARG INSTALL_MYSQL_CLIENT=false
RUN if [ ${INSTALL_MYSQL_CLIENT} = true ]; then \
apt-get update -yqq && \
apt-get -y install mysql-client \
;fi
###########################################################################
# Check PHP version:
###########################################################################