From 9399af1f7d1f2c98448d524db3012d2c87beed2a Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Sat, 19 Aug 2023 22:18:34 +1200 Subject: [PATCH] Install docker cli --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0391589..1031eeb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ FROM python:3.9-slim ARG DEPOT_VERSION=2.30.0 -RUN pip install 'ansible-core<2.17' 'ansible-compat==3.0.2' 'molecule[docker]<5.0.0' +RUN pip install 'ansible-core<2.17' \ + 'ansible-compat==3.0.2' \ + 'molecule[docker]<5.0.0' && \ + apt-get update && apt-get install -y docker-cli CMD ["/bin/bash"] \ No newline at end of file