fix: split RUN for proper hadolint ignore placement
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / lint (push) Successful in 8s
Docker Build and Push / build (pull_request) Successful in 1m44s
Docker Build and Push / build (push) Successful in 52s
Docker Build and Push / test (pull_request) Failing after 31s
Docker Build and Push / test (push) Failing after 45s
Docker Build and Push / push (pull_request) Has been skipped
Docker Build and Push / push (push) Has been skipped

This commit is contained in:
2026-06-08 20:26:37 -04:00
parent 96763b0432
commit 66aafecb6e
+3 -2
View File
@@ -6,9 +6,10 @@ ARG VERSION
# hadolint ignore=DL3018 # hadolint ignore=DL3018
RUN apk --no-cache add --virtual build-dependencies \ RUN apk --no-cache add --virtual build-dependencies \
build-base libffi-dev libressl-dev && \ build-base libffi-dev libressl-dev
# hadolint ignore=DL3013 # hadolint ignore=DL3013
pip install --no-cache-dir ansible-review && \ RUN pip install --no-cache-dir ansible-review && \
apk del build-dependencies apk del build-dependencies
LABEL maintainer="dockerimages@cabillot.eu" \ LABEL maintainer="dockerimages@cabillot.eu" \