Merge branch 'master' into feature/workspace/protoc

This commit is contained in:
Shao Yu-Lung (Allen)
2020-09-15 22:04:00 +08:00
committed by GitHub
3 changed files with 12 additions and 1 deletions

View File

@ -1376,6 +1376,16 @@ RUN if [ ${INSTALL_XMLRPC} = true ]; then \
docker-php-ext-install xmlrpc \
;fi
###########################################################################
# Lnav:
###########################################################################
ARG INSTALL_LNAV=false
RUN if [ ${INSTALL_LNAV} = true ]; then \
apt-get install -y lnav \
;fi
###########################################################################
# Protoc:
###########################################################################
@ -1395,7 +1405,6 @@ RUN if [ ${INSTALL_PROTOC} = true ]; then \
unzip -q -o /tmp/protoc.zip -d /usr/local bin/protoc && \
unzip -q -o /tmp/protoc.zip -d /usr/local 'include/*' && \
rm -f /tmp/protoc.zip \
;fi
###########################################################################
# Check PHP version: