[bitnami/discourse] Release discourse-3.3.0-debian-12-r6 (#70923)

Signed-off-by: Bitnami Bot <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2024-08-14 12:44:55 +02:00 committed by GitHub
parent 92de7dd900
commit 95fb5cf50c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -7,11 +7,11 @@ 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-08-13T16:52:49Z" \
org.opencontainers.image.created="2024-08-14T09:11:52Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/discourse/README.md" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="3.3.0-debian-12-r5" \
org.opencontainers.image.ref.name="3.3.0-debian-12-r6" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/discourse" \
org.opencontainers.image.title="discourse" \
org.opencontainers.image.vendor="Broadcom, Inc." \

View File

@ -48,6 +48,8 @@ done
# We need to remove the broken symlink for chown to succeed
find "${DISCOURSE_BASE_DIR}/vendor/bundle/ruby" -wholename "*/sprockets-*/test/fixtures/errors/symlink" -type l -exec rm -f {} \;
# Add execution permissions to esbuild and ember binaries
chmod +x "${DISCOURSE_BASE_DIR}/node_modules/@esbuild/"linux-*"/bin/esbuild" "${DISCOURSE_BASE_DIR}/node_modules/ember-cli/bin/ember"
# Required for running as non-root users, for persistence logic to work properly
# Using g+rwx/g+rw instead of explicit 775/664 permissions because Discourse includes executable binaries in different subfolders
configure_permissions_ownership "$DISCOURSE_BASE_DIR" -d "g+rwx" -f "g+rw" -u "$DISCOURSE_DAEMON_USER" -g "root"