From 8534e1253b7fe03a59aad84855bbc3ecdc7f1f6b Mon Sep 17 00:00:00 2001 From: Goutham Pratapa Date: Thu, 4 Apr 2024 14:48:39 +0530 Subject: [PATCH] fix: Support symlinks in `ca-certs` folder (#32391) Fixes: [30928](https://github.com/appsmithorg/appsmith/issues/30928) --- deploy/docker/fs/opt/appsmith/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/docker/fs/opt/appsmith/entrypoint.sh b/deploy/docker/fs/opt/appsmith/entrypoint.sh index bf9050d470..fa4baec6a6 100644 --- a/deploy/docker/fs/opt/appsmith/entrypoint.sh +++ b/deploy/docker/fs/opt/appsmith/entrypoint.sh @@ -319,7 +319,7 @@ setup-custom-ca-certificates() ( -deststorepass changeit # Add the custom CA certificates to the store. - find "$stacks_ca_certs_path" -maxdepth 1 -type f -name '*.crt' \ + find -L "$stacks_ca_certs_path" -maxdepth 1 -type f -name '*.crt' \ -print \ -exec keytool -import -alias '{}' -noprompt -keystore "$store" -file '{}' -storepass changeit ';'