[bitnami/matomo] Release 5.5.2-debian-12-r0 (#88391)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot 2025-11-14 04:00:39 +01:00 committed by GitHub
parent d70b7af6d1
commit ef17be9b39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 15 deletions

View File

@ -7,13 +7,13 @@ ARG DOWNLOADS_URL="downloads.bitnami.com/files/stacksmith"
ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2025-10-21T11:36:23Z" \
org.opencontainers.image.created="2025-11-14T02:45:54Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/matomo/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/matomo" \
org.opencontainers.image.title="matomo" \
org.opencontainers.image.vendor="Broadcom, Inc." \
org.opencontainers.image.version="5.5.1"
org.opencontainers.image.version="5.5.2"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
@ -28,13 +28,13 @@ RUN --mount=type=secret,id=downloads_url,env=SECRET_DOWNLOADS_URL \
DOWNLOADS_URL=${SECRET_DOWNLOADS_URL:-${DOWNLOADS_URL}} ; \
mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \
COMPONENTS=( \
"render-template-1.0.9-158-linux-${OS_ARCH}-debian-12" \
"php-8.4.13-6-linux-${OS_ARCH}-debian-12" \
"render-template-1.0.9-159-linux-${OS_ARCH}-debian-12" \
"php-8.4.14-6-linux-${OS_ARCH}-debian-12" \
"apache-2.4.65-1-linux-${OS_ARCH}-debian-12" \
"mysql-client-12.0.2-0-linux-${OS_ARCH}-debian-12" \
"libphp-8.4.13-0-linux-${OS_ARCH}-debian-12" \
"ini-file-1.4.9-3-linux-${OS_ARCH}-debian-12" \
"matomo-5.5.1-0-linux-${OS_ARCH}-debian-12" \
"libphp-8.4.14-0-linux-${OS_ARCH}-debian-12" \
"ini-file-1.4.9-4-linux-${OS_ARCH}-debian-12" \
"matomo-5.5.2-0-linux-${OS_ARCH}-debian-12" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@ -59,7 +59,7 @@ RUN /opt/bitnami/scripts/matomo/postunpack.sh
RUN /opt/bitnami/scripts/mysql-client/postunpack.sh
ENV APACHE_HTTPS_PORT_NUMBER="" \
APACHE_HTTP_PORT_NUMBER="" \
APP_VERSION="5.5.1" \
APP_VERSION="5.5.2" \
BITNAMI_APP_NAME="matomo" \
IMAGE_REVISION="0" \
PATH="/opt/bitnami/common/bin:/opt/bitnami/php/bin:/opt/bitnami/php/sbin:/opt/bitnami/apache/bin:/opt/bitnami/mysql/bin:$PATH"

View File

@ -19,13 +19,7 @@ set -o pipefail
# Enable required Apache modules
apache_enable_module "mpm_prefork_module"
php_version="$("${PHP_BIN_DIR}/php" -v | grep ^PHP | cut -d' ' -f2))"
php_major_version="$(get_sematic_version "$php_version" 1)"
if [[ "$php_major_version" -eq "8" ]]; then
apache_enable_module "php_module" "modules/libphp.so"
else
apache_enable_module "php${php_major_version}_module" "modules/libphp${php_major_version}.so"
fi
apache_enable_module "php_module" "modules/libphp.so"
# Disable incompatible Apache modules
apache_disable_module "mpm_event_module"