diff --git a/.github/workflows/build_latest_alpine_images.yml b/.github/workflows/build_latest_alpine_images.yml index 94c1d01..68bdf7b 100644 --- a/.github/workflows/build_latest_alpine_images.yml +++ b/.github/workflows/build_latest_alpine_images.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository == 'openswoole/docker-openswoole' }} strategy: - fail-fast: true + fail-fast: false matrix: php: ["8.2", "8.3", "8.4"] diff --git a/.github/workflows/build_latest_dev_images.yml b/.github/workflows/build_latest_dev_images.yml index aebaf0f..3e82a02 100644 --- a/.github/workflows/build_latest_dev_images.yml +++ b/.github/workflows/build_latest_dev_images.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository == 'openswoole/docker-openswoole' }} strategy: - fail-fast: true + fail-fast: false matrix: php: ["8.2", "8.3", "8.4"] diff --git a/.github/workflows/build_latest_images.yml b/.github/workflows/build_latest_images.yml index 61d8c05..587bc67 100644 --- a/.github/workflows/build_latest_images.yml +++ b/.github/workflows/build_latest_images.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository == 'openswoole/docker-openswoole' }} strategy: - fail-fast: true + fail-fast: false matrix: php: ["8.2", "8.3", "8.4"] diff --git a/.github/workflows/build_versioned_alpine_images.yml b/.github/workflows/build_versioned_alpine_images.yml index a12845b..3ea586a 100644 --- a/.github/workflows/build_versioned_alpine_images.yml +++ b/.github/workflows/build_versioned_alpine_images.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository == 'openswoole/docker-openswoole' }} strategy: - fail-fast: true + fail-fast: false matrix: php: ["8.2", "8.3", "8.4"] swoole47: diff --git a/.github/workflows/build_versioned_dev_images.yml b/.github/workflows/build_versioned_dev_images.yml index 292511e..d1e246c 100644 --- a/.github/workflows/build_versioned_dev_images.yml +++ b/.github/workflows/build_versioned_dev_images.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository == 'openswoole/docker-openswoole' }} strategy: - fail-fast: true + fail-fast: false matrix: php: ["8.2", "8.3", "8.4"] swoole47: diff --git a/.github/workflows/build_versioned_images.yml b/.github/workflows/build_versioned_images.yml index 374777b..eb01005 100644 --- a/.github/workflows/build_versioned_images.yml +++ b/.github/workflows/build_versioned_images.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository == 'openswoole/docker-openswoole' }} strategy: - fail-fast: true + fail-fast: false matrix: php: ["8.2", "8.3", "8.4"] swoole47: diff --git a/config/25.2.0.yml b/config/25.2.0.yml index e488a94..17e7840 100644 --- a/config/25.2.0.yml +++ b/config/25.2.0.yml @@ -3,9 +3,9 @@ # status: "under development" php: - - "8.2.27" - - "8.3.16" - - "8.4.3" + - "8.2.26" + - "8.3.15" + - "8.4.2" image: composer: version: "2.8.5" \ No newline at end of file diff --git a/dockerfiles/25.2.0/php8.2/alpine/Dockerfile b/dockerfiles/25.2.0/php8.2/alpine/Dockerfile index cce5e05..da57bf5 100644 --- a/dockerfiles/25.2.0/php8.2/alpine/Dockerfile +++ b/dockerfiles/25.2.0/php8.2/alpine/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.2.27-cli-alpine3.21 +FROM php:8.2.26-cli-alpine3.20 RUN \ curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \ diff --git a/dockerfiles/25.2.0/php8.2/cli/Dockerfile b/dockerfiles/25.2.0/php8.2/cli/Dockerfile index 690ff0c..6c4e7e8 100644 --- a/dockerfiles/25.2.0/php8.2/cli/Dockerfile +++ b/dockerfiles/25.2.0/php8.2/cli/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.2.27-cli +FROM php:8.2.26-cli ENV DEBIAN_FRONTEND=noninteractive ENV TERM=xterm-color diff --git a/dockerfiles/25.2.0/php8.3/alpine/Dockerfile b/dockerfiles/25.2.0/php8.3/alpine/Dockerfile index 4de7269..fceaaff 100644 --- a/dockerfiles/25.2.0/php8.3/alpine/Dockerfile +++ b/dockerfiles/25.2.0/php8.3/alpine/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.3.16-cli-alpine3.21 +FROM php:8.3.15-cli-alpine3.20 RUN \ curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \ diff --git a/dockerfiles/25.2.0/php8.3/cli/Dockerfile b/dockerfiles/25.2.0/php8.3/cli/Dockerfile index 170448f..22006f3 100644 --- a/dockerfiles/25.2.0/php8.3/cli/Dockerfile +++ b/dockerfiles/25.2.0/php8.3/cli/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.3.16-cli +FROM php:8.3.15-cli ENV DEBIAN_FRONTEND=noninteractive ENV TERM=xterm-color diff --git a/dockerfiles/25.2.0/php8.4/alpine/Dockerfile b/dockerfiles/25.2.0/php8.4/alpine/Dockerfile index b8b90dc..ec3eea8 100644 --- a/dockerfiles/25.2.0/php8.4/alpine/Dockerfile +++ b/dockerfiles/25.2.0/php8.4/alpine/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.4.3-cli-alpine3.21 +FROM php:8.4.2-cli-alpine3.20 RUN \ curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \ diff --git a/dockerfiles/25.2.0/php8.4/cli/Dockerfile b/dockerfiles/25.2.0/php8.4/cli/Dockerfile index a6e4ef9..867faea 100644 --- a/dockerfiles/25.2.0/php8.4/cli/Dockerfile +++ b/dockerfiles/25.2.0/php8.4/cli/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.4.3-cli +FROM php:8.4.2-cli ENV DEBIAN_FRONTEND=noninteractive ENV TERM=xterm-color diff --git a/dockerfiles/latest/php8.2/alpine/Dockerfile b/dockerfiles/latest/php8.2/alpine/Dockerfile index 9db5e8b..bd472fc 100644 --- a/dockerfiles/latest/php8.2/alpine/Dockerfile +++ b/dockerfiles/latest/php8.2/alpine/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.2-cli-alpine3.21 +FROM php:8.2-cli-alpine3.20 RUN \ curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \ diff --git a/dockerfiles/latest/php8.3/alpine/Dockerfile b/dockerfiles/latest/php8.3/alpine/Dockerfile index ed8f356..ac50f98 100644 --- a/dockerfiles/latest/php8.3/alpine/Dockerfile +++ b/dockerfiles/latest/php8.3/alpine/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.3-cli-alpine3.21 +FROM php:8.3-cli-alpine3.20 RUN \ curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \ diff --git a/dockerfiles/latest/php8.4/alpine/Dockerfile b/dockerfiles/latest/php8.4/alpine/Dockerfile index 5f26c67..fc3b8e9 100644 --- a/dockerfiles/latest/php8.4/alpine/Dockerfile +++ b/dockerfiles/latest/php8.4/alpine/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.4-cli-alpine3.21 +FROM php:8.4-cli-alpine3.20 RUN \ curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \ diff --git a/src/Dockerfile.php b/src/Dockerfile.php index 6cb8cea..6a7051a 100644 --- a/src/Dockerfile.php +++ b/src/Dockerfile.php @@ -27,9 +27,9 @@ class Dockerfile // '7.4' => '3.16', // '8.0' => '3.16', // '8.1' => '3.16', - '8.2' => '3.21', - '8.3' => '3.21', - '8.4' => '3.21', + '8.2' => '3.16', + '8.3' => '3.18', + '8.4' => '3.20', ]; protected string $basePath;