From 2783cb67ac01089dfe186564c73d89a29f8fc171 Mon Sep 17 00:00:00 2001 From: Jan Thijs <92784122+janthijs@users.noreply.github.com> Date: Mon, 4 Dec 2023 15:16:05 +0100 Subject: [PATCH] fix: update entrypoint --- conf/docker-entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conf/docker-entrypoint.sh b/conf/docker-entrypoint.sh index eb0e5d5..9bee729 100644 --- a/conf/docker-entrypoint.sh +++ b/conf/docker-entrypoint.sh @@ -2,7 +2,8 @@ set -e # AZ AppService allows SSH into a App instance. -if [ "$MA_OTAP_ENV" = "test" ]; then +if [ $MA_OTAP_ENV = "test" ] +then echo "Starting SSH ..." service ssh start fi