From 88e29355988079fbc5d4953e44e0ce6cc2261e4c Mon Sep 17 00:00:00 2001 From: Juan Ferrer Date: Mon, 10 Mar 2025 10:16:34 +0000 Subject: [PATCH] fix(Dockerfile): fix tini install --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c51f44b..b644729 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,8 +23,8 @@ RUN chmod a+x /tmp/ctzcls-cups_1.1.0-2_amd64.deb \ # Fix defunct processeses: https://github.com/jenkinsci/docker-inbound-agent/issues/51 ENV TINI_VERSION v0.19.0 -RUN curl -LS -o /tini https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini \ - && chmod 755 /tini +ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini +RUN chmod +x /tini # Printnatura