From 57f9f20720bb0def9477206ce69203c627652410 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 21 Sep 2021 23:33:07 +0200 Subject: [PATCH] BREAKING CHANGE: remove podman driver --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 00ef9b2..da74716 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,10 +34,10 @@ RUN apk add --update --no-cache --virtual .build-deps build-base libffi-dev musl MOLECULE_MAJOR="${MOLECULE_VERSION%%.*}" && \ if [ -z "${MOLECULE_MAJOR//[0-9]}" ] && [ -n "$MOLECULE_MAJOR" ]; then \ echo "Installing molecule version '$MOLECULE_VERSION' ..." && \ - pip install -qq --no-cache-dir molecule[docker,podman,lint,test]=="$MOLECULE_VERSION"; \ + pip install -qq --no-cache-dir molecule[docker,lint,test]=="$MOLECULE_VERSION"; \ else \ echo "Installing latest molecule ..." && \ - pip install -qq --no-cache-dir molecule[docker,podman,lint,test]; \ + pip install -qq --no-cache-dir molecule[docker,lint,test]; \ fi && \ apk del .build-deps && \ rm -rf /var/cache/apk/* && \