From eb2307d6ab860cbd7670bdcd90ee854c5e354001 Mon Sep 17 00:00:00 2001 From: Matthias Lucas Jaros Date: Mon, 17 Nov 2025 09:57:27 +0100 Subject: Fixed tini swallowing my command line args --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 07830f5..3a2f4d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,9 +24,9 @@ COPY src/version /usr/local/bin/ COPY src/banner /usr/local/bin/ # we need a init that reaps zombies -ENTRYPOINT ["tini"] # setups users and starts sshd daemon -CMD ["/usr/local/bin/init"] +ENTRYPOINT ["tini", "--", "/usr/local/bin/init"] +CMD [] ARG APP_VERSION -- cgit v1.3.1