diff --git a/DOCKERFILE b/DOCKERFILE index dbf135c..a33a451 100644 --- a/DOCKERFILE +++ b/DOCKERFILE @@ -1,14 +1,15 @@ FROM php:8.2-fpm # Installation des dépendances système +# libicu-dev est requis pour l'extension PHP intl. RUN apt-get update && apt-get install -y \ - git curl libpng-dev libonig-dev libxml2-dev zip unzip + git curl libpng-dev libonig-dev libxml2-dev libicu-dev zip unzip # Nettoyage du cache RUN apt-get clean && rm -rf /var/lib/apt/lists/* # Installation des extensions PHP pour Laravel et MySQL -RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd +RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd intl # Récupération de Composer COPY --from=composer:latest /usr/bin/composer /usr/bin/composer