gitreef

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

commit 3e4663ec29806767b52cbbc2b7fb7edd6cf38f44
parent 2122474e49bf2dc1bcd1d11092ef416ee3042008
Author: Matthias Jaros <jaros@mailbox.org>
Date:   Sat, 18 Oct 2025 22:19:47 +0200

Renamed script from init to run

Diffstat:
MDockerfile | 6+++---
Rinit -> run | 0
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile @@ -4,6 +4,6 @@ RUN apk add --no-cache openssh-server fish git # Modified ssh conf with disabled root login and no password authentication COPY ssh.conf /etc/ssh/sshd_config.d/ -COPY init /usr/local/bin/ -RUN chmod +x /usr/local/bin/init -ENTRYPOINT ["/usr/local/bin/init"] +COPY run /usr/local/bin/ +RUN chmod +x /usr/local/bin/run +ENTRYPOINT ["/usr/local/bin/run"] diff --git a/init b/run