Skip to content

Commit 5d2b1f2

Browse files
authored
Merge pull request #82 from jkaninda/develop
Add PHP 8.4
2 parents d4f8c74 + d7dad30 commit 5d2b1f2

File tree

3 files changed

+19
-17
lines changed

3 files changed

+19
-17
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ jobs:
7070
phpVersion=8.3
7171
tags: |
7272
"${{vars.BUILDKIT_IMAGE}}:8.3"
73-
"${{vars.BUILDKIT_IMAGE}}:latest"
7473
-
7574
name: Build and push 8.3 alpine
7675
uses: docker/build-push-action@v3
@@ -83,24 +82,26 @@ jobs:
8382
tags: |
8483
"${{vars.BUILDKIT_IMAGE}}:8.3-alpine"
8584
-
86-
name: Build and push 8.4 RC
87-
uses: docker/build-push-action@v3
88-
with:
89-
file: "./src/docker/Dockerfile"
90-
push: true
91-
platforms: linux/amd64,linux/arm64
92-
build-args: |
93-
phpVersion=8.4.0RC4
94-
tags: |
95-
"${{vars.BUILDKIT_IMAGE}}:8.4.0RC4"
85+
name: Build and push 8.4 alpine
86+
uses: docker/build-push-action@v3
87+
with:
88+
file: "./src/docker/Dockerfile.alpine"
89+
push: true
90+
platforms: linux/amd64,linux/arm64
91+
build-args: |
92+
phpVersion=8.4
93+
tags: |
94+
"${{vars.BUILDKIT_IMAGE}}:8.4-alpine"
9695
-
97-
name: Build and push 8.4 RC alpine
96+
name: Build and push 8.4
9897
uses: docker/build-push-action@v3
9998
with:
100-
file: "./src/docker/Dockerfile.alpine"
99+
file: "./src/docker/Dockerfile"
101100
push: true
102101
platforms: linux/amd64,linux/arm64
103102
build-args: |
104-
phpVersion=8.4.0RC4
103+
phpVersion=8.4
105104
tags: |
106-
"${{vars.BUILDKIT_IMAGE}}:8.4.0RC4-alpine"
105+
"${{vars.BUILDKIT_IMAGE}}:8.4"
106+
"${{vars.BUILDKIT_IMAGE}}:latest"
107+

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ build-83:
1818
docker build --build-arg phpVersion=8.3 -f src/docker/Dockerfile -t ${IMAGE_NAME}:8.3 .
1919
.PHONY: build-84
2020
build-84:
21-
docker build --build-arg phpVersion=8.4.0RC4 -f src/docker/Dockerfile -t ${IMAGE_NAME}:8.4 .
21+
docker build --build-arg phpVersion=8.4 -f src/docker/Dockerfile -t ${IMAGE_NAME}:8.4 .
2222
.PHONY: build-81-alpine
2323
build-81-alpine:
2424
docker build --build-arg phpVersion=8.1 -f src/docker/Dockerfile.alpine -t ${IMAGE_NAME}:8.1-alpine .
2525
.PHONY: build-84-alpine
2626
build-84-alpine:
27-
docker build --build-arg phpVersion=8.4.0RC4 -f src/docker/Dockerfile.alpine -t ${IMAGE_NAME}:8.4.0RC4-alpine .
27+
docker build --build-arg phpVersion=8.4 -f src/docker/Dockerfile.alpine -t ${IMAGE_NAME}:8.4-alpine .

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121

2222
## PHP Version:
23+
- 8.4
2324
- 8.3
2425
- 8.2
2526
- 8.1

0 commit comments

Comments
 (0)