From 66aafecb6ea0d499661fe5be3039510a7c2bea6a Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Mon, 8 Jun 2026 20:26:37 -0400 Subject: [PATCH] fix: split RUN for proper hadolint ignore placement --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index faae2d6..45e2d2d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,9 +6,10 @@ ARG VERSION # hadolint ignore=DL3018 RUN apk --no-cache add --virtual build-dependencies \ - build-base libffi-dev libressl-dev && \ - # hadolint ignore=DL3013 - pip install --no-cache-dir ansible-review && \ + build-base libffi-dev libressl-dev + +# hadolint ignore=DL3013 +RUN pip install --no-cache-dir ansible-review && \ apk del build-dependencies LABEL maintainer="dockerimages@cabillot.eu" \