From 353c648597d95868f7724cf7b0c0c1672dbd2dd4 Mon Sep 17 00:00:00 2001 From: Bram Kelchtermans Date: Mon, 19 Aug 2024 16:36:21 +0200 Subject: [PATCH] chore: Update Dockerfile to fix Teleport installation command --- Dockers/remote-react-container/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockers/remote-react-container/entrypoint.sh b/Dockers/remote-react-container/entrypoint.sh index bfabd35..b8a9f74 100644 --- a/Dockers/remote-react-container/entrypoint.sh +++ b/Dockers/remote-react-container/entrypoint.sh @@ -88,7 +88,7 @@ HOSTNAME=$(hostname) ## If teleport token is set, join the server if [ -n "$TELEPORT_TOKEN" ]; then - teleport configure --roles=node --token=$TELEPORT_TOKEN --proxy=$TELEPORT_URL -o file + teleport configure --roles=node --token=$TELEPORT_TOKEN --proxy=$TELEPORT_URL --insecure -o file fi nohup teleport start &