aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2019-01-08 12:26:12 -0700
committerCody Hiar <codyfh@gmail.com>2019-01-08 12:26:12 -0700
commit5739d2832c14a51743a25cb5974719d4bb927128 (patch)
tree8742891a67151a9a291b61a3ad79bec7d0e56a2e /Dockerfile
parentf7ac2a5c5590497b11c5f9f8808d27cfdc6a166e (diff)
Minor fixes, update readme
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index b18e08a..cba072a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,8 +4,12 @@ USER root
RUN apt-get update && apt-get -y install \
build-essential \
+ libltdl-dev \
+ sudo \
rsync
+RUN echo "jenkins ALL=NOPASSWD: ALL" >> /etc/sudoers
+
# Install Plugins
COPY plugins.txt /usr/share/jenkins/ref/plugins.txt
RUN /usr/local/bin/install-plugins.sh < /usr/share/jenkins/ref/plugins.txt