mirror of
https://github.com/ivanilves/xiringuito.git
synced 2025-05-28 04:50:23 -07:00
10 lines
217 B
Docker
10 lines
217 B
Docker
FROM ubuntu:16.04
|
|
|
|
LABEL maintainer "ivan.ilves@gmail.com"
|
|
|
|
RUN apt-get update && apt-get --yes install openssh-server && mkdir /var/run/sshd && apt-get clean
|
|
|
|
ADD ./ssh-keys /root/.ssh
|
|
|
|
CMD ["/usr/sbin/sshd", "-De"]
|