From a981d1a9c619779cedc67a7bc190511b7063dd09 Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 01:21:51 +0000 Subject: [PATCH] fix: pin ansible-lint<5 to keep default_rulesdir import --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 81809b8..a2b5ced 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN apk --no-cache add --virtual build-dependencies \ build-base libffi-dev libressl-dev # hadolint ignore=DL3013 -RUN pip install --no-cache-dir ansible-review==0.13.9 && \ +RUN pip install --no-cache-dir ansible-review==0.13.9 'ansible-lint<5' && \ apk del build-dependencies LABEL maintainer="dockerimages@cabillot.eu" \