diff --git a/.github/workflows/build-manual.yml b/.github/workflows/build-manual.yml index 1ffb27b..c26a222 100644 --- a/.github/workflows/build-manual.yml +++ b/.github/workflows/build-manual.yml @@ -53,6 +53,7 @@ jobs: with: file: "./src/docker/8.0/Dockerfile" push: true + platforms: linux/amd64,linux/arm64 tags: "${{env.BUILDKIT_IMAGE}}:8.0" - name: Build and push 8.1 @@ -60,6 +61,7 @@ jobs: with: file: "./src/docker/8.1/Dockerfile" push: true + platforms: linux/amd64,linux/arm64 tags: "${{env.BUILDKIT_IMAGE}}:8.1" - name: Build and push 8.2 @@ -67,6 +69,7 @@ jobs: with: file: "./src/docker/8.2/Dockerfile" push: true + platforms: linux/amd64,linux/arm64 tags: | "${{env.BUILDKIT_IMAGE}}:8.2" "${{env.BUILDKIT_IMAGE}}:latest" \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f05ef10..64cd98d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,6 +42,7 @@ jobs: with: file: "./src/docker/8.1/Dockerfile" push: true + platforms: linux/amd64,linux/arm64 tags: "${{env.BUILDKIT_IMAGE}}:8.1" - name: Build and push 8.2 @@ -49,6 +50,7 @@ jobs: with: file: "./src/docker/8.2/Dockerfile" push: true + platforms: linux/amd64,linux/arm64 tags: | "${{env.BUILDKIT_IMAGE}}:8.2" "${{env.BUILDKIT_IMAGE}}:latest" \ No newline at end of file diff --git a/src/docker/8.2/Dockerfile b/src/docker/8.2/Dockerfile index 80b9609..7a750ad 100644 --- a/src/docker/8.2/Dockerfile +++ b/src/docker/8.2/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.2.5-fpm +FROM php:8.2.8-fpm ARG WORKDIR=/var/www/html ENV DOCUMENT_ROOT=${WORKDIR} ENV LARAVEL_PROCS_NUMBER=1