Carlos Sanchez | 64c7ca3 | 2016-08-15 13:36:55 +0200 | [diff] [blame] | 1 | FROM openjdk:8-jdk |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 2 | |
azvyagintsev | 6983fb9 | 2018-04-07 16:04:58 +0300 | [diff] [blame] | 3 | LABEL maintainer="dev@mirantis.com" |
| 4 | |
| 5 | ENV DEBIAN_FRONTEND=noninteractive \ |
| 6 | DEBCONF_NONINTERACTIVE_SEEN=true \ |
| 7 | LANG=C.UTF-8 \ |
| 8 | LANGUAGE=$LANG |
| 9 | SHELL ["/bin/bash", "-xec"] |
| 10 | |
| 11 | # Base apt config |
| 12 | RUN cd /etc/apt/ \ |
| 13 | && echo 'Acquire::Languages "none";' > apt.conf.d/docker-no-languages \ |
| 14 | && echo 'Acquire::GzipIndexes "true"; Acquire::CompressionTypes::Order:: "gz";' > apt.conf.d/docker-gzip-indexes \ |
| 15 | && echo 'APT::Get::Install-Recommends "false"; APT::Get::Install-Suggests "false";' > apt.conf.d/docker-recommends |
| 16 | |
| 17 | RUN apt-get update && apt-get install -y git curl gettext-base python-virtualenv |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 18 | |
| 19 | ENV JENKINS_HOME /var/jenkins_home |
jeichel | aebb8b2 | 2015-08-10 12:38:20 -0400 | [diff] [blame] | 20 | ENV JENKINS_SLAVE_AGENT_PORT 50000 |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 21 | |
Stig Bakken | 854a604 | 2016-03-14 17:04:27 +0100 | [diff] [blame] | 22 | ARG user=jenkins |
| 23 | ARG group=jenkins |
| 24 | ARG uid=1000 |
| 25 | ARG gid=1000 |
| 26 | |
Scott Newson | 39046ee | 2015-10-25 03:16:16 -0600 | [diff] [blame] | 27 | # Jenkins is run with user `jenkins`, uid = 1000 |
Filip Pytloun | 1e8af36 | 2017-03-16 13:58:44 +0100 | [diff] [blame] | 28 | # If you bind mount a volume from the host or a data container, |
Scott Newson | 39046ee | 2015-10-25 03:16:16 -0600 | [diff] [blame] | 29 | # ensure you use the same uid |
Stig Bakken | 854a604 | 2016-03-14 17:04:27 +0100 | [diff] [blame] | 30 | RUN groupadd -g ${gid} ${group} \ |
| 31 | && useradd -d "$JENKINS_HOME" -u ${uid} -g ${gid} -m -s /bin/bash ${user} |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 32 | |
Filip Pytloun | 1e8af36 | 2017-03-16 13:58:44 +0100 | [diff] [blame] | 33 | # Jenkins home directory is a volume, so configuration and build history |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 34 | # can be persisted and survive image upgrades |
| 35 | VOLUME /var/jenkins_home |
| 36 | |
Filip Pytloun | 1e8af36 | 2017-03-16 13:58:44 +0100 | [diff] [blame] | 37 | # `/usr/share/jenkins/ref/` contains all reference configuration we want |
| 38 | # to set on a fresh new installation. Use it to bundle additional plugins |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 39 | # or config file with your custom jenkins Docker image. |
Filip Pytloun | e9e6f56 | 2016-08-31 16:30:33 +0200 | [diff] [blame] | 40 | RUN mkdir -p /usr/share/jenkins/ref/init.groovy.d; chown ${uid}:${gid} /usr/share/jenkins/ref/init.groovy.d |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 41 | |
muicoder | bac415c | 2017-01-19 13:47:25 +0800 | [diff] [blame] | 42 | ENV TINI_VERSION 0.13.2 |
| 43 | ENV TINI_SHA afbf8de8a63ce8e4f18cb3f34dfdbbd354af68a1 |
Dionysis Grigoropoulos | b5b788c | 2015-08-12 03:07:53 +0300 | [diff] [blame] | 44 | |
Filip Pytloun | 1e8af36 | 2017-03-16 13:58:44 +0100 | [diff] [blame] | 45 | # Use tini as subreaper in Docker container to adopt zombie processes |
Thomas Orozco | c0d446e | 2016-12-05 21:11:25 +0100 | [diff] [blame] | 46 | RUN curl -fsSL https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini-static-amd64 -o /bin/tini && chmod +x /bin/tini \ |
Carlos Sanchez | eecaeb2 | 2016-04-13 12:10:39 +0200 | [diff] [blame] | 47 | && echo "$TINI_SHA /bin/tini" | sha1sum -c - |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 48 | |
Jesse Glick | fc9e710 | 2015-04-28 09:37:28 -0400 | [diff] [blame] | 49 | COPY init.groovy /usr/share/jenkins/ref/init.groovy.d/tcp-slave-agent-port.groovy |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 50 | |
Nicolas De loof | 31bc79c | 2016-08-04 14:25:22 +0200 | [diff] [blame] | 51 | # jenkins version being bundled in this docker image |
Yoanis Gil | 8fbb91f | 2016-03-15 21:45:19 -0400 | [diff] [blame] | 52 | ARG JENKINS_VERSION |
Ivan Berezovskiy | 97f2fe4 | 2019-03-07 16:08:54 +0400 | [diff] [blame] | 53 | ENV JENKINS_VERSION ${JENKINS_VERSION:-2.150.3} |
jpthiery | 3eb0f83 | 2015-11-12 13:47:35 +0100 | [diff] [blame] | 54 | |
Nicolas De loof | 31bc79c | 2016-08-04 14:25:22 +0200 | [diff] [blame] | 55 | # jenkins.war checksum, download will be validated using it |
Ivan Berezovskiy | 97f2fe4 | 2019-03-07 16:08:54 +0400 | [diff] [blame] | 56 | ARG JENKINS_SHA=4fc2700a27a6ccc53da9d45cc8b2abd41951b361e562e1a1ead851bea61630fd |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 57 | |
Nicolas De loof | 31bc79c | 2016-08-04 14:25:22 +0200 | [diff] [blame] | 58 | # Can be used to customize where jenkins.war get downloaded from |
Joe Ferguson | d187b53 | 2016-10-17 16:20:16 -0700 | [diff] [blame] | 59 | ARG JENKINS_URL=https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/${JENKINS_VERSION}/jenkins-war-${JENKINS_VERSION}.war |
Nicolas De loof | 31bc79c | 2016-08-04 14:25:22 +0200 | [diff] [blame] | 60 | |
Filip Pytloun | 1e8af36 | 2017-03-16 13:58:44 +0100 | [diff] [blame] | 61 | # could use ADD but this one does not check Last-Modified header neither does it allow to control checksum |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 62 | # see https://github.com/docker/docker/issues/8331 |
Nicolas De loof | 31bc79c | 2016-08-04 14:25:22 +0200 | [diff] [blame] | 63 | RUN curl -fsSL ${JENKINS_URL} -o /usr/share/jenkins/jenkins.war \ |
Jon Hermansen | 14d338e | 2017-03-04 07:26:56 -0800 | [diff] [blame] | 64 | && echo "${JENKINS_SHA} /usr/share/jenkins/jenkins.war" | sha256sum -c - |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 65 | |
jamesHsiaoAcquia | aa66561 | 2016-04-21 10:55:00 -0400 | [diff] [blame] | 66 | ENV JENKINS_UC https://updates.jenkins.io |
Stig Bakken | 854a604 | 2016-03-14 17:04:27 +0100 | [diff] [blame] | 67 | RUN chown -R ${user} "$JENKINS_HOME" /usr/share/jenkins/ref |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 68 | |
| 69 | # for main web interface: |
| 70 | EXPOSE 8080 |
| 71 | |
| 72 | # will be used by attached slave agents: |
| 73 | EXPOSE 50000 |
| 74 | |
Carlos Sanchez | c8c95d1 | 2015-07-02 12:36:13 +0200 | [diff] [blame] | 75 | ENV COPY_REFERENCE_FILE_LOG $JENKINS_HOME/copy_reference_file.log |
Jesse Glick | 8cdfb1f | 2015-04-28 09:32:11 -0400 | [diff] [blame] | 76 | |
Ivan Berezovskiy | 3e05488 | 2018-11-30 15:54:26 +0400 | [diff] [blame] | 77 | COPY SimpleThemeDecorator.xml /opt/org.codefirst.SimpleThemeDecorator.xml |
| 78 | RUN chown ${user} /opt/org.codefirst.SimpleThemeDecorator.xml |
Jakub Pavlik | a067c49 | 2016-09-01 15:18:03 +0200 | [diff] [blame] | 79 | |
Stig Bakken | 854a604 | 2016-03-14 17:04:27 +0100 | [diff] [blame] | 80 | USER ${user} |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 81 | |
Vincent Latombe | c14af95 | 2016-07-18 10:20:12 +0200 | [diff] [blame] | 82 | COPY jenkins-support /usr/local/bin/jenkins-support |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 83 | COPY jenkins.sh /usr/local/bin/jenkins.sh |
Nicolas De Loof | d5aea67 | 2015-07-15 21:53:48 +0200 | [diff] [blame] | 84 | ENTRYPOINT ["/bin/tini", "--", "/usr/local/bin/jenkins.sh"] |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 85 | |
Scott Newson | 39046ee | 2015-10-25 03:16:16 -0600 | [diff] [blame] | 86 | # from a derived Dockerfile, can use `RUN plugins.sh active.txt` to setup /usr/share/jenkins/ref/plugins from a support bundle |
Nicolas De Loof | b75dc1a | 2015-03-17 11:24:05 +0100 | [diff] [blame] | 87 | COPY plugins.sh /usr/local/bin/plugins.sh |
Nicolas De Loof | dfe81a3 | 2016-05-28 17:26:01 +0200 | [diff] [blame] | 88 | COPY install-plugins.sh /usr/local/bin/install-plugins.sh |
Denis Egorenko | 6ddff32 | 2018-11-08 16:44:02 +0400 | [diff] [blame] | 89 | COPY jenkins-plugins-deps /usr/share/jenkins/ref/jenkins-plugins-deps |
Filip Pytloun | d17c92d | 2017-03-16 17:50:25 +0100 | [diff] [blame] | 90 | COPY theme /usr/share/jenkins/ref/userContent/theme |
Filip Pytloun | 74ce0b0 | 2016-08-31 16:02:16 +0200 | [diff] [blame] | 91 | |
Denis Egorenko | 6ddff32 | 2018-11-08 16:44:02 +0400 | [diff] [blame] | 92 | # list of plugins which should be installed. Doesn't include deps list, which specified in jenkins-plugins-deps file. |
Filip Pytloun | 1e8af36 | 2017-03-16 13:58:44 +0100 | [diff] [blame] | 93 | RUN JENKINS_UC_DOWNLOAD=http://archives.jenkins-ci.org /usr/local/bin/install-plugins.sh \ |
Denis Egorenko | 6ddff32 | 2018-11-08 16:44:02 +0400 | [diff] [blame] | 94 | antisamy-markup-formatter:1.5 \ |
| 95 | artifactory:2.16.2 \ |
| 96 | blueocean:1.9.0 \ |
| 97 | build-blocker-plugin:1.7.3 \ |
| 98 | build-monitor-plugin:1.12+build.201809061734 \ |
| 99 | build-timeout:1.19 \ |
| 100 | build-user-vars-plugin:1.5 \ |
| 101 | categorized-view:1.10 \ |
| 102 | command-launcher:1.2 \ |
| 103 | copyartifact:1.41 \ |
| 104 | description-setter:1.10 \ |
| 105 | discard-old-build:1.05 \ |
| 106 | docker-workflow:1.17 \ |
| 107 | email-ext:2.63 \ |
| 108 | envinject:2.1.6 \ |
| 109 | extended-choice-parameter:0.76 \ |
| 110 | extensible-choice-parameter:1.6.0 \ |
| 111 | gerrit-trigger:2.27.7 \ |
| 112 | git:3.9.1 \ |
| 113 | github:1.29.3 \ |
| 114 | heavy-job:1.1 \ |
| 115 | jdk-tool:1.1 \ |
| 116 | jobConfigHistory:2.18.2 \ |
| 117 | jira:3.0.3 \ |
| 118 | ldap:1.20 \ |
| 119 | lockable-resources:2.3 \ |
| 120 | matrix-auth:2.3 \ |
| 121 | monitoring:1.74.0 \ |
| 122 | multiple-scms:0.6 \ |
| 123 | performance:3.12 \ |
| 124 | permissive-script-security:0.3 \ |
| 125 | pipeline-utility-steps:2.1.0 \ |
| 126 | plot:2.1.0 \ |
| 127 | prometheus:2.0.0 \ |
| 128 | rebuild:1.29 \ |
| 129 | simple-theme-plugin:0.5.1 \ |
| 130 | slack:2.3 \ |
| 131 | ssh-agent:1.17 \ |
| 132 | test-stability:2.3 \ |
| 133 | throttle-concurrents:2.0.1 \ |
| 134 | workflow-cps:2.58 \ |
| 135 | workflow-remote-loader:1.4 \ |
| 136 | workflow-scm-step:2.7 |
azvyagintsev | 6983fb9 | 2018-04-07 16:04:58 +0300 | [diff] [blame] | 137 | |
| 138 | # Switch user for cleanup |
| 139 | USER root |
| 140 | # Cleanup. |
| 141 | RUN apt-get -y autoremove; apt-get -y clean; |
| 142 | RUN rm -rf /root/.cache |
| 143 | RUN rm -rf /var/lib/apt/lists/* |
| 144 | RUN rm -rf /tmp/* |
| 145 | RUN rm -rf /var/tmp/* |
| 146 | # And switch it back |
| 147 | USER ${user} |