File tree Expand file tree Collapse file tree 1 file changed +21
-19
lines changed
Expand file tree Collapse file tree 1 file changed +21
-19
lines changed Original file line number Diff line number Diff line change 11FROM php:8.4-fpm-bookworm
22
33# Installer Nginx et dépendances
4- RUN apt update \
5- && apt-get install -y --no-install-recommends \
6- nginx \
7- git \
8- mariadb-client \
9- cron \
10- libzip-dev \
11- libpng-dev \
12- libldap2-dev \
13- libpq-dev \
14- && docker-php-ext-install \
15- pdo_mysql \
16- pdo_pgsql \
17- zip \
18- gd \
19- ldap \
20- && docker-php-ext-enable opcache \
21- && curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
22- && rm -rf /var/lib/apt/lists/*
4+ RUN apt update \
5+ && apt-get install -y --no-install-recommends \
6+ nginx \
7+ git \
8+ mariadb-client \
9+ cron \
10+ libzip-dev \
11+ libpng-dev \
12+ libldap2-dev \
13+ libpq-dev \
14+ libicu-dev \
15+ && docker-php-ext-install \
16+ pdo_mysql \
17+ pdo_pgsql \
18+ zip \
19+ gd \
20+ ldap \
21+ intl \
22+ && docker-php-ext-enable opcache \
23+ && curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
24+ && rm -rf /var/lib/apt/lists/*
2325
2426RUN touch /etc/mailname
2527RUN echo "sender@yourdomain.org" > /etc/mailname
You can’t perform that action at this time.
0 commit comments