blob: 978e6104222a16ab4c721272567dc19e03fb2000 [file] [log] [blame]
# sshd
#
# VERSION 0.0.1
FROM debian
MAINTAINER Thatcher R. Peskens "thatcher@dotcloud.com"
# make sure the package repository is up to date
RUN apt-get update
RUN apt-get install -y openssh-server
RUN mkdir /var/run/sshd
RUN echo 'root:screencast' |chpasswd
EXPOSE 22
CMD ["/usr/sbin/sshd", "-D"]