From 49d10860c309707a1a025fc16594dc5d33a3900b Mon Sep 17 00:00:00 2001 From: Maciej Szulik Date: Mon, 31 Aug 2020 15:16:04 +0200 Subject: [PATCH] Add diff to tests, since e2e-cmd relies on it --- images/tests/Dockerfile.rhel | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/images/tests/Dockerfile.rhel b/images/tests/Dockerfile.rhel index 10396402f6e7..7db99dbaf7e7 100644 --- a/images/tests/Dockerfile.rhel +++ b/images/tests/Dockerfile.rhel @@ -7,7 +7,9 @@ RUN make; \ FROM registry.svc.ci.openshift.org/ocp/4.2:cli COPY --from=builder /tmp/build/openshift-tests /usr/bin/ -RUN yum install --setopt=tsflags=nodocs -y git gzip util-linux && yum clean all && rm -rf /var/cache/yum/* && \ +# TODO workloads: temporarily adding diffutils, since e2e-cmd relies on diff, +# once we re-write e2e-cmd to normal e2e it can be dropped from here +RUN yum install --setopt=tsflags=nodocs -y git gzip util-linux diffutils && yum clean all && rm -rf /var/cache/yum/* && \ git config --system user.name test && \ git config --system user.email test@test.com && \ chmod g+w /etc/passwd