From e8ba88cef8645f66f5ed0c6c8f5a13fe50d16e96 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 26 Apr 2023 09:09:57 +0200 Subject: [PATCH] remove deprecated lint extra dependency --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4fc431c..6a65730 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,lint,test]=="$MOLECULE_VERSION"; \ + pip install -qq --no-cache-dir molecule[docker,test]=="$MOLECULE_VERSION"; \ else \ echo "Installing latest molecule ..." && \ - pip install -qq --no-cache-dir molecule[docker,lint,test]; \ + pip install -qq --no-cache-dir molecule[docker,test]; \ fi && \ apk del .build-deps && \ rm -rf /var/cache/apk/* && \