`intl` PHP extension is now required

This commit is contained in:
François Jacquet 2022-04-09 17:10:03 +02:00
parent 6d953eef29
commit c8534eda14
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ RUN apt-get update && \
# Install PHP extensions.
RUN docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
docker-php-ext-install -j$(nproc) gd mbstring xml pgsql gettext xmlrpc zip
docker-php-ext-install -j$(nproc) gd mbstring xml pgsql gettext intl xmlrpc zip
# Download and extract rosariosis
ENV ROSARIOSIS_VERSION 'v8.9.1'