Add support for lnav in workspace

This commit is contained in:
abler98
2020-09-14 17:52:04 +03:00
parent ade6f6b1a7
commit 2c41e2a749
3 changed files with 12 additions and 0 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
###########################################################################
# Check PHP version:
###########################################################################