From 70331d393f7919bb79989a814787528fc2200797 Mon Sep 17 00:00:00 2001 From: Moritz Date: Tue, 4 Feb 2025 23:37:06 +0100 Subject: [PATCH] remove stacksize and change main.js path for next release --- entrypoint.sh.tmpl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh.tmpl b/entrypoint.sh.tmpl index c60086e..6524bfa 100644 --- a/entrypoint.sh.tmpl +++ b/entrypoint.sh.tmpl @@ -25,4 +25,8 @@ file_env() { } file_env "OAUTH2_SECRET" -bash -c "ulimit -s 65500; exec node --stack-size=65500 /build/main.js" +# https://github.com/wekan/wekan/issues/3585#issuecomment-1021522132 +#bash -c "ulimit -s 65500; exec node --stack-size=65500 /wekan/main.js" +# https://github.com/wekan/wekan/pull/5588 +#bash -c "ulimit -n 65500; exec node /wekan/main.js" +bash -c "exec node /wekan/main.js"