Signed-off-by: J0WI <J0WI@users.noreply.github.com>
pull/2580/head
J0WI 5 days ago
parent 701b437d67
commit 498241d9b9

@ -66,7 +66,7 @@ RUN set -ex; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
pecl install APCu-5.1.28; \
pecl install igbinary-3.2.16; \
pecl install igbinary-3.2.17RC1; \
pecl install imagick-3.8.1; \
pecl install --configureoptions 'enable-memcached-igbinary="yes"' \
memcached-3.4.0; \

@ -62,7 +62,7 @@ RUN set -ex; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
pecl install APCu-5.1.28; \
pecl install igbinary-3.2.16; \
pecl install igbinary-3.2.17RC1; \
pecl install imagick-3.8.1; \
pecl install --configureoptions 'enable-memcached-igbinary="yes"' \
memcached-3.4.0; \

@ -66,7 +66,7 @@ RUN set -ex; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
pecl install APCu-5.1.28; \
pecl install igbinary-3.2.16; \
pecl install igbinary-3.2.17RC1; \
pecl install imagick-3.8.1; \
pecl install --configureoptions 'enable-memcached-igbinary="yes"' \
memcached-3.4.0; \

@ -66,7 +66,7 @@ RUN set -ex; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
pecl install APCu-5.1.28; \
pecl install igbinary-3.2.16; \
pecl install igbinary-3.2.17RC1; \
pecl install imagick-3.8.1; \
pecl install --configureoptions 'enable-memcached-igbinary="yes"' \
memcached-3.4.0; \

@ -62,7 +62,7 @@ RUN set -ex; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
pecl install APCu-5.1.28; \
pecl install igbinary-3.2.16; \
pecl install igbinary-3.2.17RC1; \
pecl install imagick-3.8.1; \
pecl install --configureoptions 'enable-memcached-igbinary="yes"' \
memcached-3.4.0; \

@ -66,7 +66,7 @@ RUN set -ex; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
pecl install APCu-5.1.28; \
pecl install igbinary-3.2.16; \
pecl install igbinary-3.2.17RC1; \
pecl install imagick-3.8.1; \
pecl install --configureoptions 'enable-memcached-igbinary="yes"' \
memcached-3.4.0; \

@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.4-apache-trixie
FROM php:8.5-apache-trixie
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
@ -66,7 +66,7 @@ RUN set -ex; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
pecl install APCu-5.1.28; \
pecl install igbinary-3.2.16; \
pecl install igbinary-3.2.17RC1; \
pecl install imagick-3.8.1; \
pecl install --configureoptions 'enable-memcached-igbinary="yes"' \
memcached-3.4.0; \

@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
FROM php:8.4-fpm-alpine3.24
FROM php:8.5-fpm-alpine3.24
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
@ -62,7 +62,7 @@ RUN set -ex; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
pecl install APCu-5.1.28; \
pecl install igbinary-3.2.16; \
pecl install igbinary-3.2.17RC1; \
pecl install imagick-3.8.1; \
pecl install --configureoptions 'enable-memcached-igbinary="yes"' \
memcached-3.4.0; \

@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.4-fpm-trixie
FROM php:8.5-fpm-trixie
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
@ -66,7 +66,7 @@ RUN set -ex; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
pecl install APCu-5.1.28; \
pecl install igbinary-3.2.16; \
pecl install igbinary-3.2.17RC1; \
pecl install imagick-3.8.1; \
pecl install --configureoptions 'enable-memcached-igbinary="yes"' \
memcached-3.4.0; \

@ -11,7 +11,8 @@ declare -A debian_version=(
declare -A php_version=(
[32]='8.3'
[default]='8.4'
[33]='8.4'
[default]='8.5'
)
declare -A ftp_options=(
@ -88,7 +89,9 @@ redis_version="$(
declare -A pecl_versions=(
[APCu]="$apcu_version"
[igbinary]="$igbinary_version"
# https://github.com/nextcloud/docker/issues/2578
#[igbinary]="$igbinary_version"
[igbinary]="3.2.17RC1"
[imagick]="$imagick_version"
[memcached]="$memcached_version"
[redis]="$redis_version"

@ -9,19 +9,19 @@
"variant": "apache",
"base": "debian",
"baseVersion": "trixie",
"phpVersion": "8.4"
"phpVersion": "8.5"
},
"fpm": {
"variant": "fpm",
"base": "debian",
"baseVersion": "trixie",
"phpVersion": "8.4"
"phpVersion": "8.5"
},
"fpm-alpine": {
"variant": "fpm-alpine",
"base": "alpine",
"baseVersion": "3.24",
"phpVersion": "8.4"
"phpVersion": "8.5"
}
}
},

Loading…
Cancel
Save