From 11284e59eafe596dbf15e4aa3bdc679e48b0e320 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20P=C5=82aczek?= Date: Sun, 17 Nov 2024 17:56:29 +0100 Subject: [PATCH] Add intl extension to dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5d5ae2f..d52e533 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,10 @@ WORKDIR /usr/src/app RUN apt-get update && apt-get install -y \ git \ unzip \ + libicu-dev \ libzip-dev -RUN docker-php-ext-install zip +RUN docker-php-ext-install zip intl RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer