mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
fc637b5275
I might have missed some, but I think this is most of the offenders. Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon)
13 lines
277 B
Docker
13 lines
277 B
Docker
# sshd
|
|
#
|
|
# VERSION 0.0.1
|
|
|
|
FROM ubuntu:12.04
|
|
MAINTAINER Thatcher R. Peskens "thatcher@dotcloud.com"
|
|
|
|
RUN apt-get update && apt-get install -y openssh-server
|
|
RUN mkdir /var/run/sshd
|
|
RUN echo 'root:screencast' |chpasswd
|
|
|
|
EXPOSE 22
|
|
CMD ["/usr/sbin/sshd", "-D"]
|