[bitnami/appsmith] Release appsmith-1.64.0-debian-12-r2 (#79056)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot 2025-03-20 16:21:29 +01:00 committed by GitHub
parent 2decdcb27e
commit 80f6808226
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 16 additions and 8 deletions

View File

@ -8,10 +8,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="2025-03-15T18:42:59Z" \
org.opencontainers.image.created="2025-03-20T14:33:22Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/appsmith/README.md" \
org.opencontainers.image.ref.name="1.64.0-debian-12-r1" \
org.opencontainers.image.ref.name="1.64.0-debian-12-r2" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/appsmith" \
org.opencontainers.image.title="appsmith" \
org.opencontainers.image.vendor="Broadcom, Inc." \
@ -29,7 +29,7 @@ RUN install_packages acl ca-certificates curl gettext libbz2-1.0 libcrypt1 libff
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
COMPONENTS=( \
"render-template-1.0.7-14-linux-${OS_ARCH}-debian-12" \
"python-3.13.2-8-linux-${OS_ARCH}-debian-12" \
"python-3.13.2-9-linux-${OS_ARCH}-debian-12" \
"node-20.19.0-0-linux-${OS_ARCH}-debian-12" \
"nginx-1.27.4-5-linux-${OS_ARCH}-debian-12" \
"mongodb-shell-2.4.2-0-linux-${OS_ARCH}-debian-12" \

View File

@ -33,7 +33,7 @@
"arch": "amd64",
"distro": "debian-12",
"type": "NAMI",
"version": "3.13.2-8"
"version": "3.13.2-9"
},
"render-template": {
"arch": "amd64",

View File

@ -347,9 +347,10 @@ appsmith_initialize() {
# Taken from inspecting Appsmith wizard
# https://github.com/appsmithorg/appsmith/blob/release/app/server/appsmith-server/src/main/java/com/appsmith/server/dtos/UserSignupRequestDTO.java#L26
# Necessary for the installer to succeed
local -r -a create_user_args=("-L" "http://localhost:${APPSMITH_API_PORT}/api/v1/users/super"
local -r -a create_user_args=("--fail" "-L" "http://localhost:${APPSMITH_API_PORT}/api/v1/users/super"
"-H" "Origin: http://localhost:${APPSMITH_API_PORT}"
"-H" "Content-Type: application/x-www-form-urlencoded"
"-H" "X-Requested-By: Appsmith"
"--data-urlencode" "name=${APPSMITH_USERNAME}"
"--data-urlencode" "email=${APPSMITH_EMAIL}"
"--data-urlencode" "password=${APPSMITH_PASSWORD}"
@ -418,7 +419,12 @@ appsmith_backend_start_bg() {
echo "$!" >"$APPSMITH_PID_FILE"
wait_for_log_entry "License verification completed with status: valid" "$log_file" 30 10
if ! retry_while "debug_execute curl --silent --fail http://localhost:${APPSMITH_API_PORT}/api/v1/health" "30" "10"; then
error "Timed out waiting for Appsmith healthcheck. Check logs for more information..."
cat "$log_file"
return 1
fi
info "Appsmith started successfully"
}

View File

@ -3,7 +3,8 @@ location ^~ {{location}} {
{{acl_configuration}}
include "/opt/bitnami/nginx/conf/bitnami/protect-hidden-files.conf";
include "/opt/bitnami/nginx/conf/bitnami/00_protect-hidden-files.conf";
include "/opt/bitnami/nginx/conf/bitnami/00_protect-uploads-dirs.conf";
include "/opt/bitnami/nginx/conf/bitnami/php-fpm.conf";
}

View File

@ -3,7 +3,8 @@ location ^~ {{location}} {
{{acl_configuration}}
include "/opt/bitnami/nginx/conf/bitnami/protect-hidden-files.conf";
include "/opt/bitnami/nginx/conf/bitnami/00_protect-hidden-files.conf";
include "/opt/bitnami/nginx/conf/bitnami/00_protect-uploads-dirs.conf";
}
{{additional_configuration}}