From 3b044a8113d30939f0b557439482a29075669338 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Thu, 16 Mar 2023 01:19:54 +0800 Subject: [PATCH] Fix `brew style` --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aa9f10d860..373ab2627d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,8 @@ ARG DEBIAN_FRONTEND=noninteractive # hadolint ignore=DL3008 # /etc/lsb-release is checked inside the container and sets DISTRIB_RELEASE. -# shellcheck disable=SC1091,SC2154 +# We need `[` instead of `[[` because the shell is `/bin/sh`. +# shellcheck disable=SC1091,SC2154,SC2292 RUN apt-get update \ && apt-get install -y --no-install-recommends software-properties-common gnupg-agent \ && add-apt-repository -y ppa:git-core/ppa \