From cf14890097f8ae3a8174dd3e7bceb604a01f69c9 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Thu, 5 Oct 2023 16:26:48 +1300 Subject: [PATCH] Add git --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 14f11ff..b7e2e05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ FROM python:3.9-slim -RUN pip install 'ansible-core<2.17' \ +RUN apt-get update && apt-get install -y git && \ + apt-get clean all && \ + pip install 'ansible-core<2.17' \ 'ansible-compat==3.0.2' \ 'molecule[docker]<5.0.0' \ 'ansible-lint==6.16.2' \