Skip to content

Commit fe47ae9

Browse files
committed
add intl missing lib
1 parent 9f1e144 commit fe47ae9

File tree

1 file changed

+21
-19
lines changed

1 file changed

+21
-19
lines changed

Dockerfile

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
FROM 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

2426
RUN touch /etc/mailname
2527
RUN echo "sender@yourdomain.org" > /etc/mailname

0 commit comments

Comments
 (0)