From 744a6713f189e9bc270f57239ccd3a3d6b098688 Mon Sep 17 00:00:00 2001 From: Tomansru Date: Wed, 22 Apr 2020 12:40:29 +0200 Subject: [PATCH] Add intl --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0ffea13..8997116 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,9 @@ RUN cp /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ && apt-get -y install --no-install-recommends \ + # For build extentions g++ \ + # Cli utils git \ vim \ curl \ @@ -17,6 +19,8 @@ RUN apt-get update \ unzip \ # For ImageMagic #libmagickwand-dev \ + # For intl + libicu-dev \ # For PDO_PGSQL libpq-dev \ # For Mongo with ssl @@ -26,7 +30,7 @@ RUN apt-get update \ # Install PHP extensions RUN docker-php-ext-install \ - #intl \ + intl \ opcache \ pdo_mysql \ pdo_pgsql