From acad1ab1797c5a272782f2ba9304493e685618e7 Mon Sep 17 00:00:00 2001 From: Melroy van den Berg Date: Tue, 3 Sep 2024 12:36:50 +0200 Subject: [PATCH] Update Dockerfile --- ci/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/Dockerfile b/ci/Dockerfile index cff1e67e7..fcab4a06a 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -1,7 +1,7 @@ FROM php:8.3 # Add composer -COPY --from=composer:2.7.7 /usr/bin/composer /usr/bin/composer +COPY --from=composer:2.7.8 /usr/bin/composer /usr/bin/composer # Add NodeJS RUN apt-get update && apt-get install -y nodejs npm @@ -15,7 +15,7 @@ RUN curl -sSLf \ https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions RUN chmod +x /usr/local/bin/install-php-extensions -RUN install-php-extensions amqp intl redis gd zip bcmath +RUN install-php-extensions amqp intl redis gd zip bcmath xsl # Install local-php-security-checker (same as used by "symfony security:check") RUN curl -sSLf \