From 58c2f3da3f15d8845bd939daa03172542424af91 Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Sat, 31 Oct 2020 17:42:54 +0100 Subject: [PATCH] install ansible via apt --- debian-8/Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/debian-8/Dockerfile b/debian-8/Dockerfile index fe4775e..d6d1c40 100644 --- a/debian-8/Dockerfile +++ b/debian-8/Dockerfile @@ -11,11 +11,9 @@ RUN apt-get -q update \ git \ apt-utils \ curl \ + ansible \ && curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \ && chmod +rx /usr/local/bin/goss \ - && apt-get clean \ - && pip3 install --upgrade pip - -RUN pip3 install ansible + && apt-get clean CMD ["ansible-playbook", "--help"]