From 1bf9f63ee8fd8e3c5ec696bb4b8c2e1f88092389 Mon Sep 17 00:00:00 2001 From: Philipp Date: Sun, 15 Oct 2023 21:25:25 +0200 Subject: [PATCH] Enable intl --- php7.3/Dockerfile | 2 +- php7.4/Dockerfile | 2 +- php8.0/Dockerfile | 2 +- php8.1/Dockerfile | 2 +- php8.2/Dockerfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/php7.3/Dockerfile b/php7.3/Dockerfile index f79cdbe..e3f39dd 100644 --- a/php7.3/Dockerfile +++ b/php7.3/Dockerfile @@ -15,7 +15,7 @@ RUN set -ex; \ apt-get autoremove -y; apt-get autoclean; apt-get clean; \ rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*; -RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype json iconv pcntl openssl +RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype json iconv pcntl openssl intl RUN set -ex; \ curl -O -L https://phar.phpunit.de/phpunit-9.phar; \ diff --git a/php7.4/Dockerfile b/php7.4/Dockerfile index 7f6a07b..b262dce 100644 --- a/php7.4/Dockerfile +++ b/php7.4/Dockerfile @@ -15,7 +15,7 @@ RUN set -ex; \ apt-get autoremove -y; apt-get autoclean; apt-get clean; \ rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*; -RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype json iconv pcntl openssl +RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype json iconv pcntl openssl intl RUN set -ex; \ curl -O -L https://phar.phpunit.de/phpunit-9.phar; \ diff --git a/php8.0/Dockerfile b/php8.0/Dockerfile index 843be67..efa719c 100644 --- a/php8.0/Dockerfile +++ b/php8.0/Dockerfile @@ -15,7 +15,7 @@ RUN set -ex; \ apt-get autoremove -y; apt-get autoclean; apt-get clean; \ rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*; -RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype iconv +RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype iconv intl RUN set -ex; \ curl -O -L https://phar.phpunit.de/phpunit-9.phar; \ diff --git a/php8.1/Dockerfile b/php8.1/Dockerfile index 0312f03..c2f5b37 100644 --- a/php8.1/Dockerfile +++ b/php8.1/Dockerfile @@ -15,7 +15,7 @@ RUN set -ex; \ apt-get autoremove -y; apt-get autoclean; apt-get clean; \ rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*; -RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype iconv +RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype iconv intl RUN set -ex; \ curl -O -L https://phar.phpunit.de/phpunit-9.phar; \ diff --git a/php8.2/Dockerfile b/php8.2/Dockerfile index 619eefb..6a1749c 100644 --- a/php8.2/Dockerfile +++ b/php8.2/Dockerfile @@ -15,7 +15,7 @@ RUN set -ex; \ apt-get autoremove -y; apt-get autoclean; apt-get clean; \ rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*; -RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype iconv +RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype iconv intl RUN set -ex; \ curl -O -L https://phar.phpunit.de/phpunit-9.phar; \