[jenkins] Initial commit of self-upgrading Jenkins

This commit is contained in:
Geoff Bourne
2015-02-16 22:30:06 -06:00
parent 214fcda183
commit 086d9fb4ae
3 changed files with 67 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM itzg/ubuntu-openjdk-7
MAINTAINER itzg
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install curl && apt-get clean
ADD download-and-start.sh /download-and-start
ENV JENKINS_HOME /data
VOLUME ["/data"]
EXPOSE 8080
CMD ["/download-and-start"]