From 4d4ae84e3274006f5f46da81a44a65b37bfcd9a4 Mon Sep 17 00:00:00 2001 From: Shane McDonald Date: Thu, 31 Oct 2019 16:57:17 -0400 Subject: [PATCH] Fix docker cache This was causing the cache to miss on some docker versions, in addition to throwing a warning that says it will break soon. --- tools/docker-compose/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/docker-compose/Dockerfile b/tools/docker-compose/Dockerfile index 461068acee..3c7a27b695 100644 --- a/tools/docker-compose/Dockerfile +++ b/tools/docker-compose/Dockerfile @@ -49,10 +49,10 @@ RUN dnf -y update && \ xmlsec1-devel \ xmlsec1-openssl \ xmlsec1-openssl-devel \ - dnf-utils && \ + dnf-utils # UI tests only, do not put in installer/roles/image_build/templates/Dockerfile.j2 - dnf -y install \ +RUN dnf -y install \ gtk3 \ alsa-lib \ libX11-xcb \