From 50a4a95c240905d98b3f11ccaefd32419e011e5e Mon Sep 17 00:00:00 2001 From: Manash Sonowal Date: Mon, 1 Dec 2025 16:40:03 +0530 Subject: [PATCH 1/3] Upgrade PHP version to 8.5 in Dockerfile Updated PHP version in Dockerfile from 8.4 to 8.5. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 61144f8..f094800 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM php:8.4-fpm-alpine +FROM php:8.5-fpm-alpine LABEL maintainer="manash149@gmail.com" LABEL org.label-schema.build-date=$BUILD_DATE \ org.label-schema.vcs-url="https://github.com/msonowal/docker-php-node.git" \ org.label-schema.vcs-ref=$VCS_REF \ - org.label-schema.description="Docker For PHP/Laravel Developers - Docker image with PHP 8.3 and NodeJS LTS and Yarn with additional PHP extensions on official PHP Alpine flavour to use with Gitlab and other CI enviornments Fully tested" \ + org.label-schema.description="Docker For PHP/Laravel Developers - Docker image with PHP 8.5 and NodeJS LTS and Yarn with additional PHP extensions on official PHP Alpine flavour to use with Gitlab and other CI enviornments Fully tested" \ org.label-schema.url="https://github.com/msonowal/docker-php-node" #WORKDIR /var/www/html From c278ca9837c06fa559d4289d870a0015b6424575 Mon Sep 17 00:00:00 2001 From: Manash Sonowal Date: Mon, 1 Dec 2025 16:42:41 +0530 Subject: [PATCH 2/3] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e5b02cc..2f7c795 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,12 @@ [View All Tags DockerHUB](https://hub.docker.com/repository/docker/msonowal/docker-php-node/tags?page=1&ordering=last_updated) # TAGS -`php83/main/latest/edge` (PHP 8.3) +`php83/main/latest/edge` (PHP 8.5) `php84` (PHP 8.4) +`php84` (PHP 8.3) + `php82` (PHP 8.2) `php81` (PHP 8.1) @@ -26,7 +28,7 @@ `php71` (PHP 7.1) -# With composer installed 2.0 upto PHP 8.3 onwards as of now +# With composer installed 2.0 upto PHP 8.5 onwards as of now Node v18 From 778386a6d51b15e1984cfdb16db856e7393f1606 Mon Sep 17 00:00:00 2001 From: Manash Sonowal Date: Mon, 1 Dec 2025 16:43:01 +0530 Subject: [PATCH 3/3] Update docker-image.yml --- .github/workflows/docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index acbb1ee..7636d4a 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -59,7 +59,7 @@ jobs: type=sha type=edge,branch=main type=raw,value=latest - type=raw,value=php84 + type=raw,value=php85 - name: Set up QEMU uses: docker/setup-qemu-action@v3