From 7bec335c31b7cac36b54c0404dc8a878fea64772 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Wed, 27 May 2020 16:27:41 -0400 Subject: [PATCH] containers: add castxml to container if it is available Currently, this tool is only readily available on centos8 based containers (octopus). But as it is being requested by binary name it will be taken in if any repo used by the container makes it available. Signed-off-by: John Mulligan --- testing/containers/ceph/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/containers/ceph/Dockerfile b/testing/containers/ceph/Dockerfile index f2e8eb9..5dd1617 100644 --- a/testing/containers/ceph/Dockerfile +++ b/testing/containers/ceph/Dockerfile @@ -5,6 +5,7 @@ ENV CEPH_VERSION=${CEPH_VERSION:-nautilus} RUN true && \ yum install -y git wget curl libcephfs-devel librados-devel librbd-devel /usr/bin/cc /usr/bin/c++ make && \ + (yum install -y /usr/bin/castxml || true) && \ true ENV GOTAR=go1.12.17.linux-amd64.tar.gz