summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Matthias Lucas Jaros <jarlucmat@mailbox.org>2025-10-18 22:19:47 +0200
committerGravatar Matthias Lucas Jaros <jarlucmat@mailbox.org>2025-10-18 22:21:22 +0200
commitdcb683495e27dd297c10c2ce4f1877a87813fbe5 (patch)
tree9b29ca7ed6d817b4d75252c59bb5e73403697aaa /Dockerfile
parent17939d44d6aa45a0dd50c98031c12798baf7cd85 (diff)
Renamed script from init to run
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index c576ff1..7d33c8b 100644
--- 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"]