From 6c7d5f6bf1e0f55ec739c8deabfa210a26993b97 Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Sun, 25 Jan 2026 17:55:40 +0000 Subject: [PATCH] Fix tini build on newer CMake versions https://github.com/krallin/tini/pull/233 Signed-off-by: Joe Groocock --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index c027546..c09005f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -119,6 +119,8 @@ RUN curl -fL https://github.com/krallin/tini/archive/v${TINI_VER}.tar.gz \ | tar xz --strip-components=1 \ && curl -fsS https://github.com/krallin/tini/commit/7c430f3eb68ebfc8a8706ab09faad6c6fa8aa13e.patch \ | git apply \ + && curl -fsS https://github.com/krallin/tini/commit/071c715e376e9ee0ac1a196fe8c38bcb61ad385c.patch \ + | git apply \ && cmake . \ && make tini \ && install -Dm755 tini "$OUTPUT/usr/sbin/tini"