diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 553fe27..d1c2150 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -70,7 +70,6 @@ jobs: phpVersion=8.3 tags: | "${{vars.BUILDKIT_IMAGE}}:8.3" - "${{vars.BUILDKIT_IMAGE}}:latest" - name: Build and push 8.3 alpine uses: docker/build-push-action@v3 @@ -83,24 +82,26 @@ jobs: tags: | "${{vars.BUILDKIT_IMAGE}}:8.3-alpine" - - name: Build and push 8.4 RC + name: Build and push 8.4 alpine + uses: docker/build-push-action@v3 + with: + file: "./src/docker/Dockerfile.alpine" + push: true + platforms: linux/amd64,linux/arm64 + build-args: | + phpVersion=8.4 + tags: | + "${{vars.BUILDKIT_IMAGE}}:8.4-alpine" + - + name: Build and push 8.4 uses: docker/build-push-action@v3 with: file: "./src/docker/Dockerfile" push: true platforms: linux/amd64,linux/arm64 build-args: | - phpVersion=8.4.0RC4 + phpVersion=8.4 tags: | - "${{vars.BUILDKIT_IMAGE}}:8.4.0RC4" - - - name: Build and push 8.4 RC alpine - uses: docker/build-push-action@v3 - with: - file: "./src/docker/Dockerfile.alpine" - push: true - platforms: linux/amd64,linux/arm64 - build-args: | - phpVersion=8.4.0RC4 - tags: | - "${{vars.BUILDKIT_IMAGE}}:8.4.0RC4-alpine" + "${{vars.BUILDKIT_IMAGE}}:8.4" + "${{vars.BUILDKIT_IMAGE}}:latest" + diff --git a/Makefile b/Makefile index a6b198b..038bd4a 100644 --- a/Makefile +++ b/Makefile @@ -18,10 +18,10 @@ build-83: docker build --build-arg phpVersion=8.3 -f src/docker/Dockerfile -t ${IMAGE_NAME}:8.3 . .PHONY: build-84 build-84: - docker build --build-arg phpVersion=8.4.0RC4 -f src/docker/Dockerfile -t ${IMAGE_NAME}:8.4 . + docker build --build-arg phpVersion=8.4 -f src/docker/Dockerfile -t ${IMAGE_NAME}:8.4 . .PHONY: build-81-alpine build-81-alpine: docker build --build-arg phpVersion=8.1 -f src/docker/Dockerfile.alpine -t ${IMAGE_NAME}:8.1-alpine . .PHONY: build-84-alpine build-84-alpine: - docker build --build-arg phpVersion=8.4.0RC4 -f src/docker/Dockerfile.alpine -t ${IMAGE_NAME}:8.4.0RC4-alpine . + docker build --build-arg phpVersion=8.4 -f src/docker/Dockerfile.alpine -t ${IMAGE_NAME}:8.4-alpine . diff --git a/README.md b/README.md index acaf51e..18352a2 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ ## PHP Version: +- 8.4 - 8.3 - 8.2 - 8.1