mirror of
https://github.com/jkaninda/nginx-php-fpm.git
synced 2025-12-06 13:39:42 +01:00
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
@@ -50,15 +50,15 @@ 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.4 RC
|
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"
|
||||||
|
|||||||
2
Makefile
2
Makefile
@@ -18,4 +18,4 @@ 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 .
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
- [Github](https://github.com/jkaninda/nginx-php-fpm)
|
- [Github](https://github.com/jkaninda/nginx-php-fpm)
|
||||||
|
|
||||||
## PHP Versions:
|
## PHP Versions:
|
||||||
|
- 8.4
|
||||||
- 8.3
|
- 8.3
|
||||||
- 8.2
|
- 8.2
|
||||||
- 8.1
|
- 8.1
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
ARG phpVersion=8.3
|
ARG phpVersion=8.3-dev
|
||||||
FROM php:${phpVersion}-fpm
|
FROM php:${phpVersion}-fpm
|
||||||
ARG WORKDIR=/var/www/html
|
ARG WORKDIR=/var/www/html
|
||||||
ENV DOCUMENT_ROOT=${WORKDIR}
|
ENV DOCUMENT_ROOT=${WORKDIR}
|
||||||
|
|||||||
Reference in New Issue
Block a user