[bitnami/suitecrm] Release 7.14.3-debian-12-r12 (#65096)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2024-04-11 14:09:38 +02:00 committed by GitHub
parent 8760f60607
commit d26c3b2fa4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 12 deletions

View File

@ -7,10 +7,10 @@ ARG TARGETARCH
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2024-04-08T22:52:24Z" \
org.opencontainers.image.created="2024-04-11T11:23:36Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="7.14.3-debian-12-r11" \
org.opencontainers.image.ref.name="7.14.3-debian-12-r12" \
org.opencontainers.image.title="suitecrm" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="7.14.3"
@ -26,10 +26,10 @@ RUN install_packages acl ca-certificates cron curl libaudit1 libbrotli1 libbsd0
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
COMPONENTS=( \
"render-template-1.0.6-11-linux-${OS_ARCH}-debian-12" \
"php-8.1.27-9-linux-${OS_ARCH}-debian-12" \
"php-8.1.28-0-linux-${OS_ARCH}-debian-12" \
"apache-2.4.59-0-linux-${OS_ARCH}-debian-12" \
"mysql-client-11.3.2-0-linux-${OS_ARCH}-debian-12" \
"libphp-8.1.27-4-linux-${OS_ARCH}-debian-12" \
"mysql-client-11.3.2-2-linux-${OS_ARCH}-debian-12" \
"libphp-8.1.28-0-linux-${OS_ARCH}-debian-12" \
"suitecrm-7.14.3-3-linux-${OS_ARCH}-debian-12" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \

View File

@ -9,19 +9,19 @@
"arch": "amd64",
"distro": "debian-12",
"type": "NAMI",
"version": "8.1.27-4"
"version": "8.1.28-0"
},
"mysql-client": {
"arch": "amd64",
"distro": "debian-12",
"type": "NAMI",
"version": "11.3.2-0"
"version": "11.3.2-2"
},
"php": {
"arch": "amd64",
"distro": "debian-12",
"type": "NAMI",
"version": "8.1.27-9"
"version": "8.1.28-0"
},
"render-template": {
"arch": "amd64",

View File

@ -469,9 +469,9 @@ EOF
suitecrm_execute() {
local -a cmd=("php" "${SUITECRM_BASE_DIR}/bin/console" "$@")
# Run as web server user to avoid having to change permissions/ownership afterwards
if am_i_root; then
debug_execute run_as_user "$WEB_SERVER_DAEMON_USER" "${cmd[@]}"
else
am_i_root && cmd=("run_as_user" "$WEB_SERVER_DAEMON_USER" "${cmd[@]}")
(
cd "${SUITECRM_BASE_DIR}" || false
debug_execute "${cmd[@]}"
fi
)
}