Files
linuxkit/pkg/sshd/Dockerfile
Ilya Dmitrichenko a3638a2b8f Make sshd example usefull for debugging
Signed-off-by: Ilya Dmitrichenko <errordeveloper@gmail.com>
2017-04-08 12:49:51 +01:00

16 lines
241 B
Docker

FROM alpine:edge
RUN \
apk update && apk upgrade && \
apk add --no-cache \
openssh-server \
tini \
util-linux \
&& true
COPY . .
RUN mkdir -p /etc/ssh /root/.ssh && chmod 0700 /root/.ssh
CMD ["/sbin/tini", "/usr/bin/ssh.sh"]