From 4298972d2eb5ba40464ada4afd8c39f3f8ab2d89 Mon Sep 17 00:00:00 2001 From: J0WI Date: Wed, 31 May 2023 13:06:10 +0000 Subject: [PATCH] Restore PHP 8.1 for Nextcloud 25 (#1998) https://github.com/docker-library/php/pull/1412 Signed-off-by: J0WI --- update.sh | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/update.sh b/update.sh index 45864735..3b0c7dd4 100755 --- a/update.sh +++ b/update.sh @@ -2,10 +2,8 @@ set -eo pipefail declare -A alpine_version=( - # https://github.com/nextcloud/server/issues/32003 - # Nextcloud 25 requires OpenSSL 1.1 - [25]='3.16' [default]='3.17' + [25]='3.16' ) declare -A debian_version=( @@ -115,13 +113,6 @@ function create_variant() { # Apply version+variant-specific patches case "$version" in 25) - case "$variant" in - fpm-alpine) - # Alpine 3.16 / OpenSSL 1.1 is only available for PHP 8.0 - phpVersion=8.0 - ;; - esac - # Nextcloud 26+ recommends sysvsem sed -ri -e '/sysvsem/d' "$dir/Dockerfile" ;;