From 2af2a7f617cf49ba2cd2588d5583479743f3d8c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 14 Sep 2022 16:27:14 +0200 Subject: [PATCH] Dockerfile: fix build with newer ubi8/ubi-minimal image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Sandro Jäckel --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8c8efb4fe6..28b8232710 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ RUN go build -trimpath \ ./cmd/clairctl FROM registry.access.redhat.com/ubi8/ubi-minimal AS init -RUN microdnf install --disablerepo=* --enablerepo=ubi-8-baseos --enablerepo=ubi-8-appstream podman-catatonit +RUN microdnf install --disablerepo=* --enablerepo=ubi-8-baseos-rpms --enablerepo=ubi-8-appstream-rpms podman-catatonit FROM registry.access.redhat.com/ubi8/ubi-minimal AS final ENTRYPOINT ["/usr/local/bin/catatonit", "--", "/bin/clair"]