From 236e2343f39b0aeb6aa18be26c92a0dee7fd656e Mon Sep 17 00:00:00 2001 From: Ricardo Martincoski Date: Sun, 26 Dec 2021 15:49:18 -0300 Subject: [PATCH] support/docker: add shellcheck Allow developers to run check-package for init scripts, that call shellcheck, without having to install the tool. Since the docker have a fixed version of the tool, there will be no difference between runs in different machines. One can call: $ utils/docker-run utils/check-package package/package/S* $ utils/docker-run shellcheck package/package/S* This change also allows to eventually run check-package for init scripts in the GitLab CI. Signed-off-by: Ricardo Martincoski Acked-by: Romain Naour Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- support/docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/support/docker/Dockerfile b/support/docker/Dockerfile index 120e301b7c..f54c31b54a 100644 --- a/support/docker/Dockerfile +++ b/support/docker/Dockerfile @@ -45,6 +45,7 @@ RUN apt-get install -y --no-install-recommends \ qemu-system-arm \ qemu-system-x86 \ rsync \ + shellcheck \ subversion \ unzip \ wget \