From 9b379088da83b4643589c34481871694733b1f07 Mon Sep 17 00:00:00 2001 From: Scott Hebert Date: Tue, 12 Nov 2024 15:14:25 -0500 Subject: [PATCH] chore: update gitlab cli version - update to 1.48.0 Signed-off-by: Scott Hebert --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 821c3f8..170fd6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,14 +7,14 @@ ARG KUBECTL_VERSION=1.27.2 ARG OPM_VERSION=v1.38.0 ARG PUBTOOLS_CGW_VERSION=0.5.4 ARG YQ_VERSION=4.34.1 -ARG GLAB_VERSION=1.31.0 +ARG GLAB_VERSION=1.48.0 ARG GH_VERSION=2.32.1 ARG SYFT_VERSION=1.12.2 RUN curl -L https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_linux_amd64 -o /usr/bin/yq &&\ curl -L https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl -o /usr/bin/kubectl &&\ curl -L https://github.com/operator-framework/operator-registry/releases/download/${OPM_VERSION}/linux-amd64-opm -o /usr/bin/opm &&\ - curl -L https://gitlab.com/gitlab-org/cli/-/releases/v${GLAB_VERSION}/downloads/glab_${GLAB_VERSION}_Linux_x86_64.tar.gz | tar -C /usr -xzf - bin/glab &&\ + curl -L https://gitlab.com/gitlab-org/cli/-/releases/v${GLAB_VERSION}/downloads/glab_${GLAB_VERSION}_linux_amd64.tar.gz | tar -C /usr -xzf - bin/glab &&\ curl -L https://github.com/cli/cli/releases/download/v${GH_VERSION}/gh_${GH_VERSION}_linux_amd64.tar.gz | tar -C /usr -xzf - --strip=1 gh_${GH_VERSION}_linux_amd64/bin/gh &&\ curl -L https://github.com/anchore/syft/releases/download/v${SYFT_VERSION}/syft_${SYFT_VERSION}_linux_amd64.tar.gz | tar -C /usr/bin/ -xzf - syft &&\ chmod +x /usr/bin/{yq,kubectl,opm,glab,gh}