pull/2542/merge
Finn Hoffhenke 6 days ago committed by GitHub
commit 7f45d16d31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.4-apache-trixie
FROM php:8.3-apache-trixie
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
@ -46,7 +46,7 @@ RUN set -ex; \
; \
\
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
docker-php-ext-configure ftp --with-ftp-ssl; \
docker-php-ext-configure ftp --with-openssl-dir=/usr; \
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
docker-php-ext-install -j "$(nproc)" \

@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
FROM php:8.4-fpm-alpine3.23
FROM php:8.3-fpm-alpine3.23
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
@ -42,7 +42,7 @@ RUN set -ex; \
postgresql-dev \
; \
\
docker-php-ext-configure ftp --with-ftp-ssl; \
docker-php-ext-configure ftp --with-openssl-dir=/usr; \
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \
docker-php-ext-configure ldap; \
docker-php-ext-install -j "$(nproc)" \

@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.4-fpm-trixie
FROM php:8.3-fpm-trixie
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
@ -46,7 +46,7 @@ RUN set -ex; \
; \
\
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
docker-php-ext-configure ftp --with-ftp-ssl; \
docker-php-ext-configure ftp --with-openssl-dir=/usr; \
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
docker-php-ext-install -j "$(nproc)" \

@ -11,12 +11,12 @@ declare -A debian_version=(
declare -A php_version=(
[32]='8.3'
[default]='8.4'
[default]='8.3'
)
declare -A ftp_options=(
[32]='--with-openssl-dir=/usr'
[default]='--with-ftp-ssl'
[default]='--with-openssl-dir=/usr'
)
declare -A cmd=(

Loading…
Cancel
Save