diff options
| author | 2025-11-17 09:57:27 +0100 | |
|---|---|---|
| committer | 2025-11-17 09:57:27 +0100 | |
| commit | eb2307d6ab860cbd7670bdcd90ee854c5e354001 (patch) | |
| tree | 174827df0078f928fd82545dc869aeb7ce9098b3 /Dockerfile | |
| parent | 57f38a2c4211d6214fa0f5b48f602d1e2c682d24 (diff) | |
Fixed tini swallowing my command line args
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
