From c1f122b3368ecda3f15e0affc4e1b5274e9d6d82 Mon Sep 17 00:00:00 2001 From: Bram Kelchtermans Date: Mon, 19 Aug 2024 16:34:19 +0200 Subject: [PATCH] chore: Update Dockerfile to fix Teleport installation command --- Dockers/remote-react-container/entrypoint.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockers/remote-react-container/entrypoint.sh b/Dockers/remote-react-container/entrypoint.sh index 8a16d4f..bfabd35 100644 --- a/Dockers/remote-react-container/entrypoint.sh +++ b/Dockers/remote-react-container/entrypoint.sh @@ -54,10 +54,8 @@ fi # Install Teleport if the environment variables are set if [ -n "$TELEPORT_VERSION" ] && [ -n "$TELEPORT_URL" ]; then echo "Installing Teleport version $TELEPORT_VERSION, edition $TELEPORT_EDITION..." - echo "Executing: curl curl https://cdn.teleport.dev/install-v${TELEPORT_VERSION}.sh" - curl https://cdn.teleport.dev/install-v${TELEPORT_VERSION}.sh - echo "Execute downloaded script" - ./install-v${TELEPORT_VERSION}.sh ${TELEPORT_VERSION} ${TELEPORT_EDITION} + echo "Executing: curl https://goteleport.com/static/install.sh | bash -s $TELEPORT_VERSION $TELEPORT_EDITION" + curl https://goteleport.com/static/install.sh | bash -s ${TELEPORT_VERSION} ${TELEPORT_EDITION} else echo "Error: TELEPORT_VERSION and TELEPORT_EDITION environment variables must be set." fi