Skip to content

Commit 4872033

Browse files
committed
Added PHP 8.4 image.
1 parent f44a982 commit 4872033

3 files changed

Lines changed: 24 additions & 2 deletions

File tree

.github/workflows/build-images.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,35 +23,53 @@ jobs:
2323
context: php8
2424
dockerfile: Dockerfile-8-0-fpm
2525
tag: 8-0-fpm
26+
version: '8.0'
2627
- image: eksponent/php8
2728
context: php8
2829
dockerfile: Dockerfile-8-1-fpm
2930
tag: 8-1-fpm
31+
version: '8.1'
3032
- image: eksponent/php8
3133
context: php8
3234
dockerfile: Dockerfile-8-2-fpm
3335
tag: 8-2-fpm
36+
version: '8.2'
3437
- image: eksponent/php8
3538
context: php8
3639
dockerfile: Dockerfile-8-3-fpm
3740
tag: 8-3-fpm
41+
version: '8.3'
42+
- image: eksponent/php8
43+
context: php8
44+
dockerfile: Dockerfile-8-4-fpm
45+
tag: 8-4-fpm
46+
version: '8.4'
3847
# PHP workers
3948
- image: eksponent/php-with-supervisor-for-workers
4049
context: php-with-supervisor-for-workers
4150
dockerfile: Dockerfile-8.0
4251
tag: '8.0'
52+
version: '8.0'
4353
- image: eksponent/php-with-supervisor-for-workers
4454
context: php-with-supervisor-for-workers
4555
dockerfile: Dockerfile-8.1
4656
tag: '8.1'
57+
version: '8.1'
4758
- image: eksponent/php-with-supervisor-for-workers
4859
context: php-with-supervisor-for-workers
4960
dockerfile: Dockerfile-8.2
5061
tag: '8.2'
62+
version: '8.2'
5163
- image: eksponent/php-with-supervisor-for-workers
5264
context: php-with-supervisor-for-workers
5365
dockerfile: Dockerfile-8.3
5466
tag: '8.3'
67+
version: '8.3'
68+
- image: eksponent/php-with-supervisor-for-workers
69+
context: php-with-supervisor-for-workers
70+
dockerfile: Dockerfile-8.3
71+
tag: '8.4'
72+
version: '8.4'
5573
steps:
5674
-
5775
name: Checkout
@@ -79,6 +97,8 @@ jobs:
7997
platforms: linux/amd64,linux/arm64
8098
push: true
8199
tags: ${{ matrix.image }}:${{ matrix.tag }}
100+
build-args: |
101+
"PHP_VERSION=${{ matrix.version }}"
82102
83103
84104

php-with-supervisor-for-workers/Dockerfile-8.3

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
ARG ARCH=${ARCH}
2+
ARG PHP_VERSION="8.3"
23

3-
FROM php:8.3-cli
4+
FROM php:${PHP_VERSION}-cli-trixie
45

56
RUN pecl install mysql redis
67

php8/Dockerfile-8-3-fpm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
ARG ARCH=${ARCH}
2+
ARG PHP_VERSION="8.3"
23

3-
FROM php:8.3-fpm
4+
FROM php:${PHP_VERSION}-fpm-trixie
45

56
RUN pecl install mysql redis
67

0 commit comments

Comments
 (0)