From c203703ead65e8ead8bcb27e3c5f837c685d4f74 Mon Sep 17 00:00:00 2001 From: alexbelgium Date: Sun, 26 Jul 2026 19:26:22 +0200 Subject: [PATCH] fix(collabora): declare SHELL with pipefail explicitly The base image already sets it, but hadolint cannot see an inherited SHELL (DL4006), and the ldd linkage check relies on pipefail to notice a failing ldd. Co-Authored-By: Claude --- collabora/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/collabora/Dockerfile b/collabora/Dockerfile index f092727ce7..387ca84341 100644 --- a/collabora/Dockerfile +++ b/collabora/Dockerfile @@ -38,6 +38,10 @@ FROM ${BUILD_FROM} AS collabora ############################################################################### FROM ghcr.io/hassio-addons/debian-base:9.3.0 +# Inherited from the base, but declared explicitly: the linkage check below +# relies on pipefail to notice a failing ldd. +SHELL ["/bin/bash", "-o", "pipefail", "-c"] + ################## # 2 Modify Image # ##################