version 1
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..6d7169f
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,51 @@
+FROM centos:7.2.1511
+
+USER root
+
+RUN yum install -y openssh-server openssh-clients unzip git which
+
+# Set up for SSH daemon
+RUN sed -ri -e 's/UsePAM yes/#UsePAM yes/g' \
+            -e 's/#UsePAM no/UsePAM no/g' \
+            -e 's/^GSS/#GSS/' \
+            -e '/ssh_host_ed25519_key/d' \
+            /etc/ssh/sshd_config && \
+    ssh-keygen -f /etc/ssh/ssh_host_ecdsa_key -N '' -t ecdsa && \
+    ssh-keygen -f /etc/ssh/ssh_host_rsa_key -N '' -t rsa && \
+    ssh-keygen -f /etc/ssh/ssh_host_dsa_key -N '' -t dsa
+
+#            -e 's@#HostKey /etc/ssh/ssh_host_dsa_key@HostKey /etc/ssh/ssh_host_dsa_key@g' \
+
+# JDK.
+RUN mkdir /tmp/deploy && \
+    cd /tmp/deploy && \
+    curl -L --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" \
+        http://download.oracle.com/otn-pub/java/jdk/8u102-b14/jdk-8u102-linux-x64.rpm \
+        -o jdk.rpm && \
+    yum localinstall -y jdk.rpm && \
+    cd /tmp && rm -rf deploy
+ENV JAVA_HOME=/usr/java/latest
+
+# create jenkins user
+RUN groupadd -g1000 jenkins && \
+    useradd jenkins -g jenkins -u1000 -m -s /bin/bash && \
+    echo "jenkins:$(< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-32};echo)" | chpasswd
+
+COPY startup.sh /usr/sbin/
+COPY ssh/* /home/jenkins/.ssh/
+RUN chown -R jenkins:jenkins /home/jenkins/.ssh && \
+    chmod 600 /home/jenkins/.ssh/*
+
+# Configure password-less ssh for user jenkins
+USER jenkins 
+RUN ssh-keygen -q -t rsa -P "" < /dev/zero && \
+    cat /home/jenkins/.ssh/id_rsa.pub >> /home/jenkins/.ssh/authorized_keys && \
+    chmod 600 /home/jenkins/.ssh/authorized_keys
+
+# Configure the Jenkins non-interactive logins with UTF-8
+RUN echo "export LANG=en_US.UTF-8" >> /home/jenkins/.bashrc
+
+USER root
+ENTRYPOINT [ "/usr/sbin/startup.sh" ]
+CMD [ "default" ]
+EXPOSE 22 8000-8003