summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
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"]