From 1dcddacca3d9b6f200c603b77a64a5943aa5c1d5 Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Tue, 8 Oct 2019 21:53:22 +0200 Subject: [PATCH] added git as a dependency of ansible galaxy --- centos-7/Dockerfile | 2 +- ubuntu-14.04/Dockerfile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/centos-7/Dockerfile b/centos-7/Dockerfile index 3fedc25..0568e71 100644 --- a/centos-7/Dockerfile +++ b/centos-7/Dockerfile @@ -1,7 +1,7 @@ FROM centos:7 RUN yum -y install epel-release \ - && yum -y install ansible \ + && yum -y install ansible git \ && yum clean headers \ && yum clean packages diff --git a/ubuntu-14.04/Dockerfile b/ubuntu-14.04/Dockerfile index cd64943..d02f938 100644 --- a/ubuntu-14.04/Dockerfile +++ b/ubuntu-14.04/Dockerfile @@ -8,6 +8,7 @@ RUN apt-get update \ && apt-get update \ && apt-get install -y --no-install-recommends \ ansible \ + git \ && apt-get clean CMD ["ansible-playbook", "--help"]