mirror of
https://github.com/jkaninda/laravel-php-fpm.git
synced 2025-12-06 08:59:38 +01:00
Add PHP 8.4
This commit is contained in:
31
.github/workflows/build.yml
vendored
31
.github/workflows/build.yml
vendored
@@ -70,7 +70,6 @@ jobs:
|
|||||||
phpVersion=8.3
|
phpVersion=8.3
|
||||||
tags: |
|
tags: |
|
||||||
"${{vars.BUILDKIT_IMAGE}}:8.3"
|
"${{vars.BUILDKIT_IMAGE}}:8.3"
|
||||||
"${{vars.BUILDKIT_IMAGE}}:latest"
|
|
||||||
-
|
-
|
||||||
name: Build and push 8.3 alpine
|
name: Build and push 8.3 alpine
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v3
|
||||||
@@ -83,24 +82,26 @@ jobs:
|
|||||||
tags: |
|
tags: |
|
||||||
"${{vars.BUILDKIT_IMAGE}}:8.3-alpine"
|
"${{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
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
file: "./src/docker/Dockerfile"
|
file: "./src/docker/Dockerfile"
|
||||||
push: true
|
push: true
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
build-args: |
|
build-args: |
|
||||||
phpVersion=8.4.0RC4
|
phpVersion=8.4
|
||||||
tags: |
|
tags: |
|
||||||
"${{vars.BUILDKIT_IMAGE}}:8.4.0RC4"
|
"${{vars.BUILDKIT_IMAGE}}:8.4"
|
||||||
-
|
"${{vars.BUILDKIT_IMAGE}}:latest"
|
||||||
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"
|
|
||||||
|
|||||||
4
Makefile
4
Makefile
@@ -18,10 +18,10 @@ build-83:
|
|||||||
docker build --build-arg phpVersion=8.3 -f src/docker/Dockerfile -t ${IMAGE_NAME}:8.3 .
|
docker build --build-arg phpVersion=8.3 -f src/docker/Dockerfile -t ${IMAGE_NAME}:8.3 .
|
||||||
.PHONY: build-84
|
.PHONY: build-84
|
||||||
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
|
.PHONY: build-81-alpine
|
||||||
build-81-alpine:
|
build-81-alpine:
|
||||||
docker build --build-arg phpVersion=8.1 -f src/docker/Dockerfile.alpine -t ${IMAGE_NAME}:8.1-alpine .
|
docker build --build-arg phpVersion=8.1 -f src/docker/Dockerfile.alpine -t ${IMAGE_NAME}:8.1-alpine .
|
||||||
.PHONY: build-84-alpine
|
.PHONY: build-84-alpine
|
||||||
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 .
|
||||||
|
|||||||
Reference in New Issue
Block a user