GraphViz support in workspace

Issue #1003
This commit is contained in:
Madson Jr
2018-07-18 13:25:16 -03:00
parent 85c57a0b6f
commit e07ee7d07d
3 changed files with 13 additions and 0 deletions

View File

@ -377,6 +377,17 @@ RUN if [ ${INSTALL_LIBPNG} = true ]; then \
apt install libpng16-16 \
;fi
###########################################################################
# GraphViz extension
###########################################################################
ARG INSTALL_GRAPHVIZ=false
RUN if [ ${INSTALL_GRAPHVIZ} = true ]; then \
apt-get update && \
apt-get install -y graphviz \
;fi
###########################################################################
# Drupal Console:
###########################################################################