From cb245dc722ceb34048b5c23cfb8de8404a85b98a Mon Sep 17 00:00:00 2001 From: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> Date: Sun, 13 Apr 2025 02:30:09 +0200 Subject: [PATCH] Use recommended PHP `8.4` for Docker (#1245) --- Dockerfile.base | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.base b/Dockerfile.base index 082a54c63..466d4a9da 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -1,10 +1,10 @@ # ================================ # Stage 0: Build PHP Base Image # ================================ -FROM --platform=$TARGETOS/$TARGETARCH php:8.3-fpm-alpine +FROM --platform=$TARGETOS/$TARGETARCH php:8.4-fpm-alpine ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ RUN install-php-extensions bcmath gd intl zip opcache pcntl posix pdo_mysql -RUN rm /usr/local/bin/install-php-extensions \ No newline at end of file +RUN rm /usr/local/bin/install-php-extensions