From ace40760daeec049a9f45b7f4d7dbf2f345492a2 Mon Sep 17 00:00:00 2001 From: Paul Voss Date: Sun, 11 Jun 2017 21:18:36 +0200 Subject: [PATCH] install python-apt for check mode, git-core for ansible-galaxy --- ubuntu-16.04/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ubuntu-16.04/Dockerfile b/ubuntu-16.04/Dockerfile index 3de378b..48d44cf 100644 --- a/ubuntu-16.04/Dockerfile +++ b/ubuntu-16.04/Dockerfile @@ -7,6 +7,8 @@ RUN apt-get update \ && apt-get update \ && apt-get install -y --no-install-recommends \ ansible \ + python-apt \ + git-core \ && apt-get clean CMD ["ansible-playbook", "--help"]