From fa2e16a67a6cd0cbfd84cc16330a8b8b2e6184a0 Mon Sep 17 00:00:00 2001 From: John Beranek Date: Tue, 15 Aug 2023 10:28:46 +0100 Subject: [PATCH] MRBS Docker container will now install the PHP intl extension. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4d0feb02f5..dde9ebba76 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM php:8.1-apache RUN a2enmod rewrite RUN docker-php-ext-install mysqli pdo pdo_mysql -RUN apt-get update && apt-get install -y locales && \ +RUN apt-get update && apt-get install -y php-intl locales && \ sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen && \ sed -i 's/^# *\(en_GB.UTF-8\)/\1/' /etc/locale.gen && \ locale-gen