You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
231 B

FROM alpine:3.13
RUN apk add --no-cache \
openssh-server \
rsync
RUN mkdir -p /root/.ssh && \
cp /etc/ssh/sshd_config /etc/default_sshd_config && \
passwd -d root
COPY ./entrypoint.sh /entrypoint
ENTRYPOINT ["/entrypoint"]