From 9aca67fa3c1304783764454fd0bfa3896ef5012e Mon Sep 17 00:00:00 2001 From: Bram Kelchtermans Date: Mon, 19 Aug 2024 16:38:37 +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 b8a9f74..5536f3d 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 --insecure -o file + teleport configure --roles=node --token=$TELEPORT_TOKEN --proxy=$TELEPORT_URL --insecure-no-tls -o file fi nohup teleport start &