mirror of
https://github.com/ivanilves/xiringuito.git
synced 2025-05-28 04:50:23 -07:00
10 lines
221 B
Docker
10 lines
221 B
Docker
FROM centos:7
|
|
|
|
LABEL maintainer "ivan.ilves@gmail.com"
|
|
|
|
RUN yum -y install openssh-server && ssh-keygen -f /etc/ssh/ssh_host_rsa_key -N '' -t rsa && yum clean all
|
|
|
|
ADD ./ssh-keys /root/.ssh
|
|
|
|
CMD ["/usr/sbin/sshd", "-De"]
|