From 3c40c76054efa7bc485946c5e4c37e73e82b4908 Mon Sep 17 00:00:00 2001 From: Tomas Nozicka Date: Mon, 29 Jun 2026 11:51:34 +0200 Subject: [PATCH] golang-tools: Add yamllint and detox --- images/golang-tools/1.26/Containerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/images/golang-tools/1.26/Containerfile b/images/golang-tools/1.26/Containerfile index 4046463..4f2aa81 100644 --- a/images/golang-tools/1.26/Containerfile +++ b/images/golang-tools/1.26/Containerfile @@ -1,6 +1,9 @@ FROM to-be-replaced-by-local-ref/golang:1.26 -RUN go install github.com/mikefarah/yq/v4@v4.53.2 && \ +RUN microdnf install -y yamllint detox && \ + microdnf clean all && \ + rm -rf /var/cache/dnf/* && \ + go install github.com/mikefarah/yq/v4@v4.53.2 && \ go install helm.sh/helm/v4/cmd/helm@v4.2.0 && \ go install golang.org/x/vuln/cmd/govulncheck@v1.1.4 && \ go install github.com/tnozicka/ktools/cmd/ktool@v0.0.1 && \