summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorArkadiusz Hiler <arkadiusz.hiler@intel.com>2019-08-30 11:29:13 +0300
committerArkadiusz Hiler <arkadiusz.hiler@intel.com>2019-08-30 12:52:27 +0300
commit522bab4503db480dddd1985c9976bc0a6e6da986 (patch)
treeb190f1e016831e5c7e348f80afd24a296ebed2f7 /Dockerfile
parentc06ee2989c012fcc43cd361e75e9ee5a3a9292df (diff)
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 <oleg.vasilev@intel.com> Cc: Petri Latvala <petri.latvala@intel.com> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Reviewed-by: Petri Latvala <petri.latvala@intel.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 0 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index b601aecd..7ea266d3 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,9 +1,6 @@
# Version number to bump for force image rebuild: 0
FROM build-fedora
-RUN dnf install -y findutils && \
- dnf clean all
-
COPY opt-igt /opt/igt
COPY .gitlab-ci/docker-help.sh /usr/local/bin/docker-help.sh