From 522bab4503db480dddd1985c9976bc0a6e6da986 Mon Sep 17 00:00:00 2001 From: Arkadiusz Hiler Date: Fri, 30 Aug 2019 11:29:13 +0300 Subject: Dockerfile: Avoid touching external resources Let's install all the necessary things in the build-* images, so we don't touch/hammer external servers each time there is a small change in IGT. We have already seen this failing: Error: Error downloading packages: Status code: 503 for https://mirrors.fedoraproject.org/metalink?repo=fedora-30&arch=x86_64 The command '/bin/sh -c dnf install -y findutils && dnf clean all' returned a non-zero code: 1 Cc: Oleg Vasilev Cc: Petri Latvala Signed-off-by: Arkadiusz Hiler Reviewed-by: Petri Latvala --- Dockerfile.build-fedora | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Dockerfile.build-fedora') diff --git a/Dockerfile.build-fedora b/Dockerfile.build-fedora index fa27a623..4ccaadd1 100644 --- a/Dockerfile.build-fedora +++ b/Dockerfile.build-fedora @@ -37,6 +37,9 @@ RUN rm -fr /tmp/peg # For compile-testing on clang RUN dnf install -y clang +# For the helpers for the container with IGT inside +RUN dnf install -y findutils + # Meson version switching shenanigans WORKDIR /usr/src RUN curl -O https://files.pythonhosted.org/packages/c0/9b/44cdb8adcbb186be6cba5c93718d0c68f177b0e8082ae00cafa63a1d3535/meson-0.47.0.tar.gz -- cgit v1.2.3