diff --git a/readme.md b/readme.md index c236e78..0ecf27b 100644 --- a/readme.md +++ b/readme.md @@ -7,20 +7,20 @@ Images can be found on [docker hub](https://hub.docker.com/repository/docker/dan #### Supported versions * php 8.0.12 - * composer 2.1.9 + * composer 2.1.12 * xdebug 3.1.0 * php 7.4.24 (latest) - * composer 1.10.22 + * composer 1.10.23 * xdebug 2.9.8 * rdkafka 3.1.2 * timecop 1.2.10 -* php 7.3.31 - * composer 1.10.22 +* php 7.3.32 + * composer 1.10.23 * xdebug 2.9.8 * rdkafka 3.1.2 * timecop 1.2.10 * php 7.2.34 - * composer 1.10.22 + * composer 1.10.23 * xdebug 2.7.2 * rdkafka 3.1.2 * timecop 1.2.10 diff --git a/v7.2/Dockerfile b/v7.2/Dockerfile index 200da52..1b59526 100644 --- a/v7.2/Dockerfile +++ b/v7.2/Dockerfile @@ -21,7 +21,7 @@ RUN docker-php-ext-configure imap --with-imap-ssl \ && docker-php-ext-install imap # Install composer -ARG COMPOSER_VERSION=1.10.22 +ARG COMPOSER_VERSION=1.10.23 RUN curl -sS https://getcomposer.org/installer | php -- \ --filename=composer \ --version=${COMPOSER_VERSION}\ diff --git a/v7.3/Dockerfile b/v7.3/Dockerfile index 982ab68..94f398c 100644 --- a/v7.3/Dockerfile +++ b/v7.3/Dockerfile @@ -1,4 +1,4 @@ -FROM php:7.3.31-alpine +FROM php:7.3.32-alpine RUN apk update && apk add --no-cache $PHPIZE_DEPS \ && apk add --no-cache zlib-dev gd-dev libwebp-dev freetype-dev libpng-dev libjpeg-turbo-dev \ @@ -21,7 +21,7 @@ RUN docker-php-ext-configure imap --with-imap-ssl \ && docker-php-ext-install imap # Install composer -ARG COMPOSER_VERSION=1.10.22 +ARG COMPOSER_VERSION=1.10.23 RUN curl -sS https://getcomposer.org/installer | php -- \ --filename=composer \ --version=${COMPOSER_VERSION} \ diff --git a/v7.4/Dockerfile b/v7.4/Dockerfile index f6b38c9..0901e83 100644 --- a/v7.4/Dockerfile +++ b/v7.4/Dockerfile @@ -21,7 +21,7 @@ ARG PHP_RDKAFKA_VERSION=3.1.2 RUN pecl install rdkafka-${PHP_RDKAFKA_VERSION} && docker-php-ext-enable rdkafka # Install composer -ARG COMPOSER_VERSION=1.10.22 +ARG COMPOSER_VERSION=1.10.23 RUN curl -sS https://getcomposer.org/installer | php -- \ --filename=composer \ --version=${COMPOSER_VERSION} \ diff --git a/v8.0/Dockerfile b/v8.0/Dockerfile index 2f9f923..116dea7 100644 --- a/v8.0/Dockerfile +++ b/v8.0/Dockerfile @@ -17,11 +17,11 @@ RUN docker-php-ext-configure gd --enable-gd \ && PHP_OPENSSL=yes docker-php-ext-configure imap --with-imap-ssl \ && docker-php-ext-install imap -ARG PHP_XDEBUG_VERSION=3.1.0 +ARG PHP_XDEBUG_VERSION=3.1.1 RUN pecl install xdebug-${PHP_XDEBUG_VERSION} && docker-php-ext-enable xdebug # Install composer -ARG COMPOSER_VERSION=2.1.9 +ARG COMPOSER_VERSION=2.1.12 RUN curl -sS https://getcomposer.org/installer | php -- \ --filename=composer \ --version=${COMPOSER_VERSION} \