From c5c765d20f238b62b2ad54332c3cb97b03ff019e Mon Sep 17 00:00:00 2001 From: renovate_bot <jonas+renovate@jonasled.de> Date: Sun, 15 Dec 2024 13:28:23 +0100 Subject: [PATCH] Update composer Docker tag to v2.8.4 --- .gitlab-ci.yml | 6 +++--- Dockerfile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7bcd583f..a9b8e0b1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ variables: PHPstan: stage: test - image: composer:2.8.3 + image: composer:2.8.4 needs: [] before_script: - composer install --ignore-platform-reqs @@ -54,7 +54,7 @@ PHPCS: Unit tests: stage: test - image: composer:2.8.3 + image: composer:2.8.4 needs: [] variables: XDEBUG_MODE: coverage @@ -84,7 +84,7 @@ Webpack: Composer: stage: build - image: composer:2.8.3 + image: composer:2.8.4 needs: [] script: - apk add php-cli composer php-gd php-ctype php-xml php-simplexml php-xmlwriter php-tokenizer php-session php-dom php-mysqli php-pdo_mysql php-sockets diff --git a/Dockerfile b/Dockerfile index d85d5792..9e1facbf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ COPY . ./ RUN yarn install --frozen-lockfile && \ yarn build -FROM --platform=$BUILDPLATFORM composer:2.8.3@sha256:26bbf85fccb36247181de6f4a2beddac47d4b352c0c19249a3b4fa2abf1e38ad as buildPHP +FROM --platform=$BUILDPLATFORM composer:2.8.4@sha256:e4d7757e0c7ae48d9ddc65c07215ce602cbdcc909dc0dd8e30626ffd865fc968 as buildPHP WORKDIR /app COPY . ./ RUN composer install --no-cache --no-interaction --prefer-dist --ignore-platform-reqs --optimize-autoloader -- GitLab