From 3cdceca9bd33e1edd18e95141b64ee27e2afd670 Mon Sep 17 00:00:00 2001 From: Steve Kuznetsov Date: Fri, 6 Jan 2017 11:01:17 -0500 Subject: [PATCH] Work around `dnf` issues and install builddep for Rawhide Signed-off-by: Steve Kuznetsov --- hacking/titotest-fedora-rawhide/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hacking/titotest-fedora-rawhide/Dockerfile b/hacking/titotest-fedora-rawhide/Dockerfile index e0a8940..b19fac3 100644 --- a/hacking/titotest-fedora-rawhide/Dockerfile +++ b/hacking/titotest-fedora-rawhide/Dockerfile @@ -4,8 +4,12 @@ FROM fedora:rawhide # http://jumanjiman.github.io/ MAINTAINER Paul Morgan +# Run an update to work around https://bugzilla.redhat.com/show_bug.cgi?id=1409590 +# TODO: remove this once the Rawhide base image is updated +RUN dnf -y update # Install build dependencies. RUN dnf -y install \ + 'dnf-command(builddep)' \ git-annex \ python-devel \ python-mock \