From da8b8dee58c6e272c8ed4ca9b96bc8073a2422e6 Mon Sep 17 00:00:00 2001 From: Leo Gaggl Date: Wed, 22 Jan 2025 11:21:23 +1030 Subject: [PATCH] Update Dockerfile - Issue #5535 Change PHP Version to 8.3 to fix https://github.com/pixelfed/pixelfed/issues/5535. Update the Debian release to Bookworm, as it's been a stable release for nearly 2 years. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3f27c84a2..29d22f611 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,11 +28,11 @@ ARG DOTTIE_VERSION="v0.9.5" ### # See: https://hub.docker.com/_/php/tags -ARG PHP_VERSION="8.1" +ARG PHP_VERSION="8.3" # See: https://github.com/docker-library/docs/blob/master/php/README.md#image-variants ARG PHP_BASE_TYPE="apache" -ARG PHP_DEBIAN_RELEASE="bullseye" +ARG PHP_DEBIAN_RELEASE="bookworm" ARG RUNTIME_UID=33 # often called 'www-data' ARG RUNTIME_GID=33 # often called 'www-data'