From 3090e96eae2c37b3c20b4266e4604d9d4c5cf26b Mon Sep 17 00:00:00 2001 From: alebinson Date: Wed, 21 Feb 2024 13:40:19 +0200 Subject: [PATCH] fix: add sleep to entrypoint --- entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index d43c069c..50534b81 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,3 +1,5 @@ +echo "Sleeping for 2 secs ..." && \ +sleep(2) && \ echo "Running CONFD ..." && \ node ../confd/generate-config.js --indocker && \ echo "Preparing SED command -->" 's/{PUBLIC_URL_PLACEHOLDER}/'"$(echo "$CONFIGURATION_PUBLIC_URL" | sed 's/[^a-zA-Z0-9.]/\\&/g')"'/g' && \