Skip to content

Commit 355c264

Browse files
committed
upgrade 6.0.2 images
1 parent ee9c32f commit 355c264

File tree

13 files changed

+42
-42
lines changed

13 files changed

+42
-42
lines changed

config/6.0.2.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
#
44
status: "under development"
55
php:
6-
- "8.1.32"
7-
- "8.2.28"
8-
- "8.3.19"
9-
- "8.4.5"
6+
- "8.1.33"
7+
- "8.2.29"
8+
- "8.3.26"
9+
- "8.4.13"
1010
image:
1111
composer:
12-
version: "2.8.6"
12+
version: "2.8.12"
1313
php_extensions:
1414
redis:
15-
version: "6.1.0"
15+
version: "6.2.0"
1616
configureoptions: "enable-redis-igbinary=\"no\" enable-redis-lzf=\"no\" enable-redis-zstd=\"no\""
1717
enabled: true

dockerfiles/6.0.2/php8.1/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM php:8.1.32-cli-alpine3.20
1+
FROM php:8.1.33-cli-alpine3.22
22

3-
COPY --from=composer:2.8.6 /usr/bin/composer /usr/bin/
3+
COPY --from=composer:2.8.12 /usr/bin/composer /usr/bin/
44

55
RUN \
66
set -ex && \
@@ -10,7 +10,7 @@ RUN \
1010
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
1111
docker-php-ext-install pdo_mysql && \
1212
pecl channel-update pecl.php.net && \
13-
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.1.0 && \
13+
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.2.0 && \
1414
# PHP extension Redis is included since 4.8.12+ and 5.0.1+.
1515
docker-php-ext-enable redis && \
1616
docker-php-ext-install sockets && \

dockerfiles/6.0.2/php8.1/cli/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM php:8.1.32-cli
1+
FROM php:8.1.33-cli
22

33
ENV DEBIAN_FRONTEND=noninteractive
44
ENV TERM=xterm-color
55

66
ARG DEV_MODE
77
ENV DEV_MODE=$DEV_MODE
88

9-
COPY --from=composer:2.8.6 /usr/bin/composer /usr/bin/
9+
COPY --from=composer:2.8.12 /usr/bin/composer /usr/bin/
1010
COPY ./rootfilesystem/ /
1111

1212
RUN \
@@ -25,7 +25,7 @@ RUN \
2525
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
2626
docker-php-ext-install pdo_mysql && \
2727
pecl channel-update pecl.php.net && \
28-
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.1.0 && \
28+
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.2.0 && \
2929
# PHP extension Redis is included since 4.8.12+ and 5.0.1+.
3030
docker-php-ext-enable redis && \
3131
install-swoole.sh 6.0.2 \

dockerfiles/6.0.2/php8.1/zts/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM php:8.1.32-zts
1+
FROM php:8.1.33-zts
22

33
ENV DEBIAN_FRONTEND=noninteractive
44
ENV TERM=xterm-color
55

66
ARG DEV_MODE
77
ENV DEV_MODE=$DEV_MODE
88

9-
COPY --from=composer:2.8.6 /usr/bin/composer /usr/bin/
9+
COPY --from=composer:2.8.12 /usr/bin/composer /usr/bin/
1010
COPY ./rootfilesystem/ /
1111

1212
RUN \
@@ -25,7 +25,7 @@ RUN \
2525
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
2626
docker-php-ext-install pdo_mysql && \
2727
pecl channel-update pecl.php.net && \
28-
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.1.0 && \
28+
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.2.0 && \
2929
# PHP extension Redis is included since 4.8.12+ and 5.0.1+.
3030
docker-php-ext-enable redis && \
3131
install-swoole.sh 6.0.2 \

dockerfiles/6.0.2/php8.2/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM php:8.2.28-cli-alpine3.20
1+
FROM php:8.2.29-cli-alpine3.22
22

3-
COPY --from=composer:2.8.6 /usr/bin/composer /usr/bin/
3+
COPY --from=composer:2.8.12 /usr/bin/composer /usr/bin/
44

55
RUN \
66
set -ex && \
@@ -10,7 +10,7 @@ RUN \
1010
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
1111
docker-php-ext-install pdo_mysql && \
1212
pecl channel-update pecl.php.net && \
13-
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.1.0 && \
13+
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.2.0 && \
1414
# PHP extension Redis is included since 4.8.12+ and 5.0.1+.
1515
docker-php-ext-enable redis && \
1616
docker-php-ext-install sockets && \

dockerfiles/6.0.2/php8.2/cli/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM php:8.2.28-cli
1+
FROM php:8.2.29-cli
22

33
ENV DEBIAN_FRONTEND=noninteractive
44
ENV TERM=xterm-color
55

66
ARG DEV_MODE
77
ENV DEV_MODE=$DEV_MODE
88

9-
COPY --from=composer:2.8.6 /usr/bin/composer /usr/bin/
9+
COPY --from=composer:2.8.12 /usr/bin/composer /usr/bin/
1010
COPY ./rootfilesystem/ /
1111

1212
RUN \
@@ -25,7 +25,7 @@ RUN \
2525
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
2626
docker-php-ext-install pdo_mysql && \
2727
pecl channel-update pecl.php.net && \
28-
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.1.0 && \
28+
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.2.0 && \
2929
# PHP extension Redis is included since 4.8.12+ and 5.0.1+.
3030
docker-php-ext-enable redis && \
3131
install-swoole.sh 6.0.2 \

dockerfiles/6.0.2/php8.2/zts/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM php:8.2.28-zts
1+
FROM php:8.2.29-zts
22

33
ENV DEBIAN_FRONTEND=noninteractive
44
ENV TERM=xterm-color
55

66
ARG DEV_MODE
77
ENV DEV_MODE=$DEV_MODE
88

9-
COPY --from=composer:2.8.6 /usr/bin/composer /usr/bin/
9+
COPY --from=composer:2.8.12 /usr/bin/composer /usr/bin/
1010
COPY ./rootfilesystem/ /
1111

1212
RUN \
@@ -25,7 +25,7 @@ RUN \
2525
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
2626
docker-php-ext-install pdo_mysql && \
2727
pecl channel-update pecl.php.net && \
28-
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.1.0 && \
28+
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.2.0 && \
2929
# PHP extension Redis is included since 4.8.12+ and 5.0.1+.
3030
docker-php-ext-enable redis && \
3131
install-swoole.sh 6.0.2 \

dockerfiles/6.0.2/php8.3/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM php:8.3.19-cli-alpine3.20
1+
FROM php:8.3.26-cli-alpine3.22
22

3-
COPY --from=composer:2.8.6 /usr/bin/composer /usr/bin/
3+
COPY --from=composer:2.8.12 /usr/bin/composer /usr/bin/
44

55
RUN \
66
set -ex && \
@@ -10,7 +10,7 @@ RUN \
1010
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
1111
docker-php-ext-install pdo_mysql && \
1212
pecl channel-update pecl.php.net && \
13-
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.1.0 && \
13+
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.2.0 && \
1414
# PHP extension Redis is included since 4.8.12+ and 5.0.1+.
1515
docker-php-ext-enable redis && \
1616
docker-php-ext-install sockets && \

dockerfiles/6.0.2/php8.3/cli/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM php:8.3.19-cli
1+
FROM php:8.3.26-cli
22

33
ENV DEBIAN_FRONTEND=noninteractive
44
ENV TERM=xterm-color
55

66
ARG DEV_MODE
77
ENV DEV_MODE=$DEV_MODE
88

9-
COPY --from=composer:2.8.6 /usr/bin/composer /usr/bin/
9+
COPY --from=composer:2.8.12 /usr/bin/composer /usr/bin/
1010
COPY ./rootfilesystem/ /
1111

1212
RUN \
@@ -25,7 +25,7 @@ RUN \
2525
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
2626
docker-php-ext-install pdo_mysql && \
2727
pecl channel-update pecl.php.net && \
28-
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.1.0 && \
28+
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.2.0 && \
2929
# PHP extension Redis is included since 4.8.12+ and 5.0.1+.
3030
docker-php-ext-enable redis && \
3131
install-swoole.sh 6.0.2 \

dockerfiles/6.0.2/php8.3/zts/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM php:8.3.19-zts
1+
FROM php:8.3.26-zts
22

33
ENV DEBIAN_FRONTEND=noninteractive
44
ENV TERM=xterm-color
55

66
ARG DEV_MODE
77
ENV DEV_MODE=$DEV_MODE
88

9-
COPY --from=composer:2.8.6 /usr/bin/composer /usr/bin/
9+
COPY --from=composer:2.8.12 /usr/bin/composer /usr/bin/
1010
COPY ./rootfilesystem/ /
1111

1212
RUN \
@@ -25,7 +25,7 @@ RUN \
2525
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
2626
docker-php-ext-install pdo_mysql && \
2727
pecl channel-update pecl.php.net && \
28-
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.1.0 && \
28+
pecl install --configureoptions 'enable-redis-igbinary="no" enable-redis-lzf="no" enable-redis-zstd="no"' redis-6.2.0 && \
2929
# PHP extension Redis is included since 4.8.12+ and 5.0.1+.
3030
docker-php-ext-enable redis && \
3131
install-swoole.sh 6.0.2 \

0 commit comments

Comments
 (0)