From 1cf60b186df3b78e94a075b159ed4d9112093313 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 31 Oct 2022 09:44:41 +0100 Subject: [PATCH] Update Dockerfile --- flexget/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flexget/Dockerfile b/flexget/Dockerfile index b5245e427..d992eb7f5 100644 --- a/flexget/Dockerfile +++ b/flexget/Dockerfile @@ -29,7 +29,7 @@ ENV S6_CMD_WAIT_FOR_SERVICES=1 \ SHELL ["/bin/bash", "-o", "pipefail", "-c"] -# hadolint ignore=SC2016 +# hadolint ignore=SC2016,SC2086 RUN \ # Set password files=$(grep -sril "set FG_WEBUI_PASSWD" /etc/s6-overlay/s6-rc.d) \ @@ -39,7 +39,7 @@ RUN \ # Global LSIO modifications ARG CONFIGLOCATION="/config/addons_config/flexget" -# hadolint ignore=SC2015, SC2013 +# hadolint ignore=SC2015,SC2013,SC2236 RUN \ # Avoid custom-init.d duplications for file in $(grep -sril 'Potential tampering with custom' /etc/cont-init.d /etc/services.d /etc/s6-overlay/s6-rc.d); do rm -f "$file"; done \