From 2d71b41f9573588146352506e0e94b05e78ea5a7 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 9561978..7e60024 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,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==${ANSIBLE_REVIEW_VERSION} && \ +RUN pip install --no-cache-dir ansible-review 'ansible-lint<5' && \ apk del build-dependencies LABEL maintainer="dockerimages@cabillot.eu" \