Merge pull request #857 from winfried-van-loon/847-fix-intl-php-fpm

Add apt update to intl install
This commit is contained in:
Mike Erickson 2017-04-27 08:39:48 -07:00 committed by GitHub
commit f6f89fca61

View File

@ -212,6 +212,7 @@ RUN if [ ${INSTALL_TOKENIZER} = true ]; then \
ARG INSTALL_INTL=false
RUN if [ ${INSTALL_INTL} = true ]; then \
# Install intl and requirements
apt-get -y update && \
apt-get install -y zlib1g-dev libicu-dev g++ && \
docker-php-ext-configure intl && \
docker-php-ext-install intl \