fix: split RUN for proper hadolint ignore placement
Docker Build and Push / lint (push) Successful in 11s
Docker Build and Push / build (push) Successful in 1m24s
Docker Build and Push / test (push) Failing after 22s
Docker Build and Push / push (push) Has been skipped
Docker Build and Push / lint (pull_request) Failing after 13m29s
Docker Build and Push / build (pull_request) Has been skipped
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped

This commit is contained in:
2026-06-08 20:26:37 -04:00
parent 96763b0432
commit 66aafecb6e
+4 -3
View File
@@ -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" \