Install of libpng16 library for fix react and react with material-ui application (#1625)

* Added commands in Workspace Dockerfile for installation of libpng with configurable env argument switch

* Updated documentation
This commit is contained in:
Emanuele Menon
2018-06-28 07:14:06 +02:00
committed by Shao Yu-Lung (Allen)
parent 1d9cbd7c75
commit dcf6b6d9ac
4 changed files with 40 additions and 0 deletions

View File

@ -352,6 +352,17 @@ RUN if [ ${INSTALL_SWOOLE} = true ]; then \
ln -s /etc/php/${PHP_VERSION}/mods-available/swoole.ini /etc/php/${PHP_VERSION}/cli/conf.d/20-swoole.ini \
;fi
###########################################################################
# Libpng16 EXTENSION
###########################################################################
ARG INSTALL_LIBPNG=false
RUN if [ ${INSTALL_LIBPNG} = true ]; then \
apt update && \
apt install libpng16-16 \
;fi
###########################################################################
# Drupal Console:
###########################################################################