From 258e932f85426d81a96365e0435c4bc24a5fa103 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 19 Jan 2021 21:00:26 +0100 Subject: [PATCH] fix: install extra dependencies also for latest version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5a21bf7..5e5d3d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN apk add --update --no-cache --virtual .build-deps gcc make libffi-dev musl-d pip install -qq --no-cache-dir molecule[docker,podman,lint]=="$MOLECULE_VERSION"; \ else \ echo "Installing latest molecule ..." && \ - pip install -qq --no-cache-dir molecule; \ + pip install -qq --no-cache-dir molecule[docker,podman,lint]; \ fi && \ apk del .build-deps && \ rm -rf /var/cache/apk/* && \