From 4bff3866b22a5e14055411ca2dc0d25cd522a333 Mon Sep 17 00:00:00 2001 From: Tony Blyler Date: Sun, 16 May 2021 10:38:36 -0400 Subject: [PATCH] Actually add the entrypoint script to the docker image --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 63c3c6b..0c9f0ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,3 +5,7 @@ RUN apk add --no-cache \ rsync RUN mkdir -p /root/.ssh && cp /etc/ssh/sshd_config /etc/default_sshd_config + +COPY ./entrypoint.sh /entrypoint + +ENTRYPOINT ["/entrypoint"]