From b45daab3e1e11e9191af071833e6dff4dcafa197 Mon Sep 17 00:00:00 2001 From: Bram Kelchtermans Date: Mon, 19 Aug 2024 16:50:15 +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 5536f3d..4c8c2f7 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-no-tls -o file + teleport configure --roles=node --token=$TELEPORT_TOKEN --proxy=$TELEPORT_URL --no-acme -o file fi nohup teleport start &