From c827c967ddf3d72e64b784670d14a2b82b28a71b Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Mon, 8 Jun 2026 20:30:00 -0400 Subject: [PATCH] fix: add SC2086 to hadolint ignore --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8bbd480..3b2884d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:18.04 LABEL maintainer="Julien Cabillot " -# hadolint ignore=DL3008,SC3009 +# hadolint ignore=DL3008,SC3009,SC2086 RUN export DEBIAN_FRONTEND=noninteractive && \ export BUILD_PACKAGES=git-core && \ export RUNTIME_PACKAGES="python bsdmainutils curl python-six" && \