gitreef

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 67887f1127d98077b9456fb82d3d240c950af727
parent 835d80d67b1b8b90409e1fc265ec817a71a410e7
Author: Matthias Jaros <jaros@mailbox.org>
Date:   Mon, 17 Nov 2025 09:57:27 +0100

Fixed tini swallowing my command line args

Diffstat:
MDockerfile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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