Actually add the entrypoint script to the docker image

This commit is contained in:
Tony Blyler 2021-05-16 10:38:36 -04:00
parent 29f6ee641f
commit 4bff3866b2
Signed by: tblyler
GPG key ID: 7F13D9A60C0D678E

View file

@ -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"]