First cut at an official jenkins docker repo
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..dfd05df
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,10 @@
+FROM ubuntu:14.04
+RUN apt-get update
+RUN apt-get install -y wget git curl
+RUN apt-get install -y --no-install-recommends openjdk-7-jdk
+RUN apt-get install -y maven ant
+RUN wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
+RUN echo deb http://pkg.jenkins-ci.org/debian binary/ >> /etc/apt/sources.list
+RUN apt-get update
+RUN apt-get install -y jenkins
+CMD exec su jenkins -c "java -jar /usr/share/jenkins/jenkins.war"
\ No newline at end of file