From d65e0b4d6e907bf65ef4b00fdce1418708728e2f Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 01:01:08 +0000 Subject: [PATCH] fix: pin ansible-lint<5 for ansible-review compatibility --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 45e2d2d..ace0258 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 && \ +RUN pip install --no-cache-dir ansible-review 'ansible-lint<5' && \ apk del build-dependencies LABEL maintainer="dockerimages@cabillot.eu" \