Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brucedou committed Feb 3, 2025
1 parent 9e59e29 commit c87caac
Show file tree
Hide file tree
Showing 17 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_latest_alpine_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_latest_dev_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_latest_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_versioned_alpine_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_versioned_dev_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_versioned_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions config/25.2.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion dockerfiles/25.2.0/php8.2/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/25.2.0/php8.2/cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2.27-cli
FROM php:8.2.26-cli

ENV DEBIAN_FRONTEND=noninteractive
ENV TERM=xterm-color
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/25.2.0/php8.3/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/25.2.0/php8.3/cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.3.16-cli
FROM php:8.3.15-cli

ENV DEBIAN_FRONTEND=noninteractive
ENV TERM=xterm-color
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/25.2.0/php8.4/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/25.2.0/php8.4/cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.4.3-cli
FROM php:8.4.2-cli

ENV DEBIAN_FRONTEND=noninteractive
ENV TERM=xterm-color
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/latest/php8.2/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/latest/php8.3/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/latest/php8.4/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
6 changes: 3 additions & 3 deletions src/Dockerfile.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c87caac

Please sign in to comment.