remove opsmop
[dockerfiles.git] / ssh / Dockerfile
blobf9c37b4eda0f1d6405bfe7c8ae36d5f28c9d2157
1 FROM alpine:latest 
3 MAINTAINER Ricardson 'rwcs' Williams <ricardsonwilliams@gmail.com>
5 RUN \
6     apk add --no-cache openssh \
7     && sed -i s/#PermitRootLogin.*/PermitRootLogin\ yes/ /etc/ssh/sshd_config \
8     && echo "root:root" | chpasswd
10 COPY scripts / 
12 EXPOSE 22
14 ENTRYPOINT ["/entrypoint.sh"]