From 88366003222d641389d9e274c9693c6312ba650f Mon Sep 17 00:00:00 2001 From: Honza Horak Date: Mar 01 2018 09:45:09 +0000 Subject: Do not verify ghost files, it's fine when they're missing --- diff --git a/Dockerfile b/Dockerfile index 3892ecd..8c0661a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,7 @@ EXPOSE 3306 # to make sure of that. RUN INSTALL_PKGS="rsync tar gettext hostname bind-utils mariadb-server policycoreutils" && \ dnf install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \ - rpm -V $INSTALL_PKGS && \ + rpm -V --noghost $INSTALL_PKGS && \ dnf clean all && \ mkdir -p /var/lib/mysql/data && chown -R mysql.0 /var/lib/mysql && \ test "$(id mysql)" = "uid=27(mysql) gid=27(mysql) groups=27(mysql)"