From 54ea22c49afa5f903d00e19b920e7753cf119095 Mon Sep 17 00:00:00 2001 From: Ron Rise Date: Fri, 7 Nov 2025 04:36:49 +0000 Subject: [PATCH] chore: update RoadRunner and PHP versions in Dockerfile (#10) Reviewed-on: https://gitea.siteworxpro.com/siteworxpro/Php-Template/pulls/10 Co-authored-by: Ron Rise Co-committed-by: Ron Rise --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 62cb0f5..ae5d98a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use the RoadRunner image as a base for the first stage -FROM ghcr.io/roadrunner-server/roadrunner:2025.1.1 AS roadrunner +FROM ghcr.io/roadrunner-server/roadrunner:2025.1.4 AS roadrunner # Use the official Composer image as the base for the library stage FROM siteworxpro/composer AS library @@ -12,7 +12,7 @@ RUN composer install --optimize-autoloader --ignore-platform-reqs --no-dev # Use the official PHP CLI image with Alpine Linux for the second stage -FROM php:8.4.6-alpine AS php +FROM php:8.4.14-alpine AS php # Move the production PHP configuration file to the default location RUN mv /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini \