Skip to content

Commit

Permalink
Adds docker to the jenkins container
Browse files Browse the repository at this point in the history
Tested that works as expected.

fixes #196
  • Loading branch information
ivotron committed Dec 30, 2017
1 parent 5c17ac7 commit 2d1c37c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/ci/jenkins/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
FROM jenkins/jenkins:lts
USER root
RUN curl -SL https://download.docker.com/linux/static/stable/x86_64/docker-17.06.2-ce.tgz | tar -xzv docker/docker && \
mv docker/docker /usr/bin && \
rm -r docker/
USER jenkins
COPY plugins.txt /usr/share/jenkins/ref/plugins.txt
RUN /usr/local/bin/install-plugins.sh < /usr/share/jenkins/ref/plugins.txt
/usr/local/bin/install-plugins.sh < /usr/share/jenkins/ref/plugins.txt

0 comments on commit 2d1c37c

Please sign in to comment.