| 12345678910111213141516171819 | FROM docker.io/alpine:3.18.2ARG OPENSSH_SERVER_PACKAGE_VERSION=9.3_p1-r3RUN apk add --no-cache openssh-server=$OPENSSH_SERVER_PACKAGE_VERSIONENV SSHD_HOST_KEYS_DIR /etc/ssh/host_keysVOLUME $SSHD_HOST_KEYS_DIRCOPY sshd_config /etc/ssh/sshd_config# comma-separated list of usernamesENV USERS ""EXPOSE 22/tcpCOPY entrypoint.sh /ENTRYPOINT ["/entrypoint.sh"]CMD ["/usr/sbin/sshd", "-D", "-e"]
 |