From 82c9d0ee7111c29ce91664b57788e64d3d2464b1 Mon Sep 17 00:00:00 2001 From: Patrick Stephens Date: Tue, 11 Oct 2022 09:48:51 +0100 Subject: [PATCH] packaging: lint fixes Signed-off-by: Patrick Stephens --- packaging/distros/ubuntu/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packaging/distros/ubuntu/Dockerfile b/packaging/distros/ubuntu/Dockerfile index fb5db7c99a4..e8ff16b461c 100644 --- a/packaging/distros/ubuntu/Dockerfile +++ b/packaging/distros/ubuntu/Dockerfile @@ -31,6 +31,7 @@ RUN apt-get update && \ # ubuntu/18.04 base image FROM ubuntu:18.04 as ubuntu-18.04-base ENV DEBIAN_FRONTEND noninteractive +SHELL ["/bin/bash", "-o", "pipefail", "-c"] # hadolint ignore=DL3008,DL3015 RUN apt-get update && \ @@ -49,6 +50,7 @@ RUN apt-get update && \ # ubuntu/18.04.arm64v8 base image FROM arm64v8/ubuntu:18.04 as ubuntu-18.04.arm64v8-base ENV DEBIAN_FRONTEND noninteractive +SHELL ["/bin/bash", "-o", "pipefail", "-c"] COPY --from=multiarch-aarch64 /usr/bin/qemu-aarch64-static /usr/bin/qemu-aarch64-static