From 44abe90222e3fd137c6c0100c5a539273744eb54 Mon Sep 17 00:00:00 2001 From: Tim Bendt Date: Wed, 26 Nov 2025 13:47:17 -0500 Subject: [PATCH] update php in docker --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b877810..964b55b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.1-fpm +FROM php:8.3-fpm # Install system dependencies RUN apt-get update && apt-get install -y \ @@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y \ RUN apt-get clean && rm -rf /var/lib/apt/lists/* # Install PHP extensions -RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd zip +RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd zip dom curl # Get latest Composer COPY --from=composer:latest /usr/bin/composer /usr/bin/composer