From 8623dbd2e56437a48a736c2de72549284e1f67d9 Mon Sep 17 00:00:00 2001 From: David van der Spek <28541758+DavidSpek@users.noreply.github.com> Date: Tue, 12 Sep 2023 19:17:13 +0200 Subject: [PATCH] fix: use the console version of the CLI (#1252) Signed-off-by: David van der Spek --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b188fb8e8..72b3cb912 100644 --- a/Dockerfile +++ b/Dockerfile @@ -64,7 +64,7 @@ RUN apk add --update --no-cache curl ca-certificates unzip wget openssl && \ curl -L https://github.com/alco/goon/releases/download/${GOON_VERSION}/goon_linux_${TARGETARCH}.tar.gz | tar xvz && \ mv goon /usr/local/bin/goon && \ # download plural cli - curl -L https://github.com/pluralsh/plural-cli/releases/download/${CLI_VERSION}/plural-cli_${CLI_VERSION/v/}_Linux_${TARGETARCH}.tar.gz | tar xvz plural && \ + curl -L https://github.com/pluralsh/plural-cli/releases/download/${CLI_VERSION}/plural-cli_console_${CLI_VERSION/v/}_Linux_${TARGETARCH}.tar.gz | tar xvz plural && \ mv plural /usr/local/bin/plural && \ # download terrascan if [ "$TARGETARCH" = "amd64" ]; then \