From b8a4db6a69680226cefe45bac994c7303d93ee54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Prpi=C4=8D?= Date: Mon, 3 Oct 2022 13:38:57 -0400 Subject: [PATCH] Fix missing dnf clean attribute in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6f1968b..2419486 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ LABEL maintainer="Red Hat Product Security Dev - Red Hat, Inc." \ summary="Container image for the cvelib CLI utility." \ distribution-scope="public" -RUN dnf --nodocs -y install python3-pip && dnf clean +RUN dnf --nodocs -y install python3-pip && dnf clean all RUN pip3 install --no-cache-dir cvelib