From 76b66733edf5902a58d4fbdb5bc097ade28cfc5b Mon Sep 17 00:00:00 2001 From: Alexandre Date: Thu, 20 Jan 2022 21:26:14 +0100 Subject: [PATCH] hadolint --- inadyn/Dockerfile | 1 + joal/Dockerfile | 1 + ombi/Dockerfile | 2 +- paperless_ng/Dockerfile | 1 + portainer/Dockerfile | 1 + webtop/Dockerfile | 1 + 6 files changed, 6 insertions(+), 1 deletion(-) diff --git a/inadyn/Dockerfile b/inadyn/Dockerfile index 93d4eab2f..90a4bdda3 100644 --- a/inadyn/Dockerfile +++ b/inadyn/Dockerfile @@ -58,6 +58,7 @@ RUN if ! command -v bash >/dev/null 2>/dev/null; then (apt-get update && apt-get # Install mustache # spellcheck disable=SC2015 +# hadolint ignore=SC2015 RUN apk add --no-cache \ go \ npm \ diff --git a/joal/Dockerfile b/joal/Dockerfile index 327af1a80..8e8dd7c68 100644 --- a/joal/Dockerfile +++ b/joal/Dockerfile @@ -25,6 +25,7 @@ FROM anthonyraymond/joal:$BUILD_UPSTREAM # Install Joal # spellcheck disable=SC2015 +# hadolint ignore=SC2015 # hadolint ignore=DL4006 RUN \ if ! command -v curl >/dev/null 2>/dev/null; then (apt-get update && apt-get install -yqq --no-install-recommends curl || apk add --no-cache curl); fi \ diff --git a/ombi/Dockerfile b/ombi/Dockerfile index 37a1c256f..b78547219 100644 --- a/ombi/Dockerfile +++ b/ombi/Dockerfile @@ -23,7 +23,7 @@ FROM ${BUILD_FROM} ################## # spellcheck disable=SC2015 -# hadolint ignore=DL4006 +# hadolint ignore=SC2015,DL4006 RUN \ # Allow UID and GID setting sed -i 's/bash/bashio/g' /etc/cont-init.d/10-adduser \ diff --git a/paperless_ng/Dockerfile b/paperless_ng/Dockerfile index 1035e5d16..37ba190e4 100644 --- a/paperless_ng/Dockerfile +++ b/paperless_ng/Dockerfile @@ -24,6 +24,7 @@ FROM ${BUILD_FROM} ENV PAPERLESS_DATA_DIR=/config/addons_config/paperless_ng # spellcheck disable=SC2015 +# hadolint ignore=SC2015 RUN \ ################# # Correct image # diff --git a/portainer/Dockerfile b/portainer/Dockerfile index d4ef664ab..9ea55f1ec 100644 --- a/portainer/Dockerfile +++ b/portainer/Dockerfile @@ -28,6 +28,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] ARG BUILD_UPSTREAM="2.11.0" # spellcheck disable=SC2015 +# hadolint ignore=SC2015 RUN \ BUILD_ARCH=$(uname -m) \ && echo "${BUILD_ARCH}" \ diff --git a/webtop/Dockerfile b/webtop/Dockerfile index ad376f292..c47fc3008 100644 --- a/webtop/Dockerfile +++ b/webtop/Dockerfile @@ -34,6 +34,7 @@ RUN sed -i 's/bash/bashio/g' /etc/cont-init.d/10-adduser \ # Graphic drivers for rpi4 # spellcheck disable=SC2015 +# hadolint ignore=SC2015 RUN apt-get update && apt-get install -yqq --no-install-recommends libgles2-mesa libgles2-mesa-dev xorg-dev || true ##################