From 2d7aca7c365e823724afc9f428526ccb011e3b39 Mon Sep 17 00:00:00 2001 From: Killian Delarue Date: Thu, 21 Aug 2025 17:06:11 +0200 Subject: [PATCH 1/2] Images, Jsonnet: Install golang latest version --- images/jsonnet/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/images/jsonnet/Dockerfile b/images/jsonnet/Dockerfile index 87149655f300..d784a938c483 100644 --- a/images/jsonnet/Dockerfile +++ b/images/jsonnet/Dockerfile @@ -21,8 +21,9 @@ RUN apt-get update && \ ENV PATH=/root/go/bin:$PATH # Install go-jsonnet +# hadolint ignore=DL3008 RUN apt-get update && \ - apt-get install --no-install-recommends -y golang-go=2:1.19~1 && \ + apt-get install --no-install-recommends -y golang-go && \ # The source commit of v0.6.0 is pinned # https://github.com/jsonnet-bundler/jsonnet-bundler/tree/v0.6.0 go install -a github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb@ddded59 && \ -- GitLab From 62ddacb9e8114913df809dcc91c3b026e615b5ee Mon Sep 17 00:00:00 2001 From: Killian Delarue Date: Fri, 22 Aug 2025 11:41:37 +0200 Subject: [PATCH 2/2] Images, Jsonnet: Use [debian:trixie] --- images/jsonnet/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/jsonnet/Dockerfile b/images/jsonnet/Dockerfile index d784a938c483..634931ceb86a 100644 --- a/images/jsonnet/Dockerfile +++ b/images/jsonnet/Dockerfile @@ -1,6 +1,6 @@ # Grafazos dependencies -FROM debian:stable +FROM debian:trixie SHELL ["/bin/bash", "-euo", "pipefail", "-c"] -- GitLab