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 <noreply@anthropic.com>
This commit is contained in:
alexbelgium
2026-07-26 19:26:22 +02:00
parent eef927d485
commit c203703ead

View File

@@ -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 #
##################