From 8c414e7e703c64dd834a19923bdab4233698ceb2 Mon Sep 17 00:00:00 2001 From: Jp Date: Thu, 26 Feb 2026 13:31:46 +0800 Subject: [PATCH] build: switch to thecodingmachine PHP image for enhanced features The base image is changed from the official php:8.4-fpm-alpine to thecodingmachine/php:8.4-v4-fpm-alpine to leverage additional pre-installed extensions, configurations, and utilities provided by the TheCodingMachine Docker images, which simplifies the setup for common PHP development and production environments. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2e09deb..e885f41 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.4-fpm-alpine +FROM thecodingmachine/php:8.4-v4-fpm-alpine WORKDIR /var/www