From 86b80bafb43402315f358a1d61afc50e41898bff Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Mon, 24 Jul 2023 17:07:35 +0200 Subject: [PATCH] Add `rpmlint` to releng-ci image We now feature the new tool in the CI image so that we can utilize it in the verify job. Signed-off-by: Sascha Grunert --- images/releng/ci/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/images/releng/ci/Dockerfile b/images/releng/ci/Dockerfile index dfce80371ba..ff8cd6a4efe 100644 --- a/images/releng/ci/Dockerfile +++ b/images/releng/ci/Dockerfile @@ -27,8 +27,9 @@ RUN apt-get update && \ bsdmainutils \ build-essential \ google-cloud-sdk \ - jq && \ - rm -rf /var/lib/apt/lists/* + jq \ + rpmlint \ + && rm -rf /var/lib/apt/lists/* # install goreleaser ARG GORELEASER_VERSION=v1.19.2