From 0763a103ce886d121a01906a87fa53ca3ca66073 Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Nov 08 2018 13:28:44 +0000 Subject: ci: Add ansible to the test container We need Ansible in the test container in order for the various standard-test-roles self-tests to run correctly. --- diff --git a/ci/Dockerfile b/ci/Dockerfile index 6aca5fe..b3fbf0d 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -4,7 +4,8 @@ ENV PARAM_WDIR="/var" RUN rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm RUN sed -i -e '/\[main\]/aip_resolve=4' /etc/yum.conf RUN yum install -y which copr-cli nss_wrapper fedora-packager wget rpmdevtools \ - gcc python34-devel redhat-rpm-config python34 python34-virtualenv python34-pip; \ + gcc python34-devel redhat-rpm-config python34 python34-virtualenv python34-pip \ + ansible; \ yum clean all; \ rm -rf /var/cache/yum WORKDIR "$PARAM_WDIR"