summaryrefslogtreecommitdiffstats
path: root/update.sh
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2023-05-31 13:06:10 +0000
committerGitHub <noreply@github.com>2023-05-31 13:06:10 +0000
commit4298972d2eb5ba40464ada4afd8c39f3f8ab2d89 (patch)
treea0c1fbd24727067561f56fa92812a89c2b0d9cb4 /update.sh
parent570ac60ed20c5197eb050c8ec55eae5d9c3e58eb (diff)
Restore PHP 8.1 for Nextcloud 25 (#1998)
https://github.com/docker-library/php/pull/1412 Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh11
1 files changed, 1 insertions, 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"
;;