From 156f611611f0d24e71283f8e6fae437c0b5fcfcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 5 Feb 2023 02:16:30 +0100 Subject: [PATCH] Do not build extenstions that are already existing in the docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d628ea12..53ad011c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN docker-php-ext-configure gd \ --with-webp \ --with-jpeg \ --with-freetype \ - && docker-php-ext-install -j "$(nproc)" gd pdo_mysql curl intl mbstring bcmath zip xml xsl + && docker-php-ext-install -j "$(nproc)" gd pdo_mysql intl bcmath zip xsl # Enable opcache and configure it recommended for symfony (see https://symfony.com/doc/current/performance.html) RUN docker-php-ext-enable opcache; \