From d3041e86954dab111e79603b21c373dc00afd4c4 Mon Sep 17 00:00:00 2001 From: dannc Date: Wed, 22 Dec 2021 17:48:09 +0700 Subject: [PATCH] bump composer 2.x version --- readme.md | 4 ++-- v8.0/Dockerfile | 2 +- v8.1/Dockerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index e2908ae..461064b 100644 --- a/readme.md +++ b/readme.md @@ -7,10 +7,10 @@ Images can be found on [docker hub](https://hub.docker.com/repository/docker/dan #### Supported versions * php 8.1.0 - * composer 2.1.14 + * composer 2.2.0 * xdebug 3.1.0 * php 8.0.13 - * composer 2.1.14 + * composer 2.2.0 * xdebug 3.1.0 * php 7.4.26 (latest) * composer 1.10.24 diff --git a/v8.0/Dockerfile b/v8.0/Dockerfile index 84a1ac4..2439ff8 100644 --- a/v8.0/Dockerfile +++ b/v8.0/Dockerfile @@ -21,7 +21,7 @@ ARG PHP_XDEBUG_VERSION=3.1.2 RUN pecl install xdebug-${PHP_XDEBUG_VERSION} && docker-php-ext-enable xdebug # Install composer -ARG COMPOSER_VERSION=2.1.14 +ARG COMPOSER_VERSION=2.2.0 RUN curl -sS https://getcomposer.org/installer | php -- \ --filename=composer \ --version=${COMPOSER_VERSION} \ diff --git a/v8.1/Dockerfile b/v8.1/Dockerfile index a6759c3..6e6665a 100644 --- a/v8.1/Dockerfile +++ b/v8.1/Dockerfile @@ -20,7 +20,7 @@ ARG PHP_XDEBUG_VERSION=3.1.2 RUN pecl install xdebug-${PHP_XDEBUG_VERSION} && docker-php-ext-enable xdebug # Install composer -ARG COMPOSER_VERSION=2.1.14 +ARG COMPOSER_VERSION=2.2.0 RUN curl -sS https://getcomposer.org/installer | php -- \ --filename=composer \ --version=${COMPOSER_VERSION} \