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:

committed by
Shao Yu-Lung (Allen)

parent
1d9cbd7c75
commit
dcf6b6d9ac
@ -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:
|
||||
###########################################################################
|
||||
|
Reference in New Issue
Block a user