From 8c2b2745f889f092785983fa740690c4a10a4984 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 15 Aug 2018 18:57:30 +0200 Subject: [PATCH] :whale: Sets default Shell --- airsonos/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/airsonos/Dockerfile b/airsonos/Dockerfile index d24797b..1027ddc 100755 --- a/airsonos/Dockerfile +++ b/airsonos/Dockerfile @@ -2,6 +2,9 @@ ARG BUILD_FROM=hassioaddons/ubuntu-base:2.1.0 # hadolint ignore=DL3006 FROM ${BUILD_FROM} +# Set shell +SHELL ["/bin/bash", "-o", "pipefail", "-c"] + # Setup base system RUN \ apt-get update \