From cd22158f287f2bc5f5fed9cf6f40825fde3bfefc Mon Sep 17 00:00:00 2001 From: Tomas Tomecek Date: Fri, 12 Jan 2018 09:11:40 +0100 Subject: [PATCH] rpm -V npm fails on ghost files https://bugzilla.redhat.com/show_bug.cgi?id=1533092 Signed-off-by: Tomas Tomecek --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d18924b..478cd8a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,5 +41,6 @@ RUN INSTALL_PKGS="autoconf \ which \ zlib-devel" && \ dnf install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \ - rpm -V $INSTALL_PKGS && \ + rpm -V --noghost $INSTALL_PKGS && \ dnf clean all -y +# the reason for --noghost: https://bugzilla.redhat.com/show_bug.cgi?id=1533092