docker-1/Dockerfile

78 lines
3.0 KiB
Docker
Raw Permalink Normal View History

2016-08-15 11:36:55 +00:00
FROM openjdk:8-jdk
2015-03-17 10:24:05 +00:00
RUN apt-get update && apt-get install -y git curl && rm -rf /var/lib/apt/lists/*
2015-03-17 10:24:05 +00:00
ARG user=jenkins
ARG group=jenkins
ARG uid=1000
ARG gid=1000
2017-05-26 10:48:51 +00:00
ARG http_port=8080
ARG agent_port=50000
ENV JENKINS_HOME /var/jenkins_home
ENV JENKINS_SLAVE_AGENT_PORT ${agent_port}
2015-10-25 09:16:16 +00:00
# Jenkins is run with user `jenkins`, uid = 1000
# If you bind mount a volume from the host or a data container,
2015-10-25 09:16:16 +00:00
# ensure you use the same uid
RUN groupadd -g ${gid} ${group} \
&& useradd -d "$JENKINS_HOME" -u ${uid} -g ${gid} -m -s /bin/bash ${user}
2015-03-17 10:24:05 +00:00
# Jenkins home directory is a volume, so configuration and build history
2015-03-17 10:24:05 +00:00
# can be persisted and survive image upgrades
VOLUME /var/jenkins_home
# `/usr/share/jenkins/ref/` contains all reference configuration we want
# to set on a fresh new installation. Use it to bundle additional plugins
2015-03-17 10:24:05 +00:00
# or config file with your custom jenkins Docker image.
RUN mkdir -p /usr/share/jenkins/ref/init.groovy.d
# Use tini as subreaper in Docker container to adopt zombie processes
2018-01-02 08:56:27 +00:00
ARG TINI_VERSION=v0.16.1
COPY tini_pub.gpg /var/jenkins_home/tini_pub.gpg
RUN curl -fsSL https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static-$(dpkg --print-architecture) -o /sbin/tini \
&& curl -fsSL https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static-$(dpkg --print-architecture).asc -o /sbin/tini.asc \
&& gpg --import /var/jenkins_home/tini_pub.gpg \
&& gpg --verify /sbin/tini.asc \
&& rm -rf /sbin/tini.asc /root/.gnupg \
&& chmod +x /sbin/tini
2015-03-17 10:24:05 +00:00
2015-04-28 13:37:28 +00:00
COPY init.groovy /usr/share/jenkins/ref/init.groovy.d/tcp-slave-agent-port.groovy
2015-03-17 10:24:05 +00:00
# jenkins version being bundled in this docker image
2016-03-16 01:45:19 +00:00
ARG JENKINS_VERSION
2017-08-17 18:05:00 +00:00
ENV JENKINS_VERSION ${JENKINS_VERSION:-2.60.3}
# jenkins.war checksum, download will be validated using it
2017-08-17 18:05:00 +00:00
ARG JENKINS_SHA=2d71b8f87c8417f9303a73d52901a59678ee6c0eefcf7325efed6035ff39372a
2015-03-17 10:24:05 +00:00
# Can be used to customize where jenkins.war get downloaded from
2016-10-17 23:20:16 +00:00
ARG JENKINS_URL=https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/${JENKINS_VERSION}/jenkins-war-${JENKINS_VERSION}.war
# could use ADD but this one does not check Last-Modified header neither does it allow to control checksum
2015-03-17 10:24:05 +00:00
# see https://github.com/docker/docker/issues/8331
RUN curl -fsSL ${JENKINS_URL} -o /usr/share/jenkins/jenkins.war \
&& echo "${JENKINS_SHA} /usr/share/jenkins/jenkins.war" | sha256sum -c -
2015-03-17 10:24:05 +00:00
ENV JENKINS_UC https://updates.jenkins.io
ENV JENKINS_UC_EXPERIMENTAL=https://updates.jenkins.io/experimental
RUN chown -R ${user} "$JENKINS_HOME" /usr/share/jenkins/ref
2015-03-17 10:24:05 +00:00
# for main web interface:
2017-05-26 10:48:51 +00:00
EXPOSE ${http_port}
2015-03-17 10:24:05 +00:00
# will be used by attached slave agents:
2017-05-26 10:48:51 +00:00
EXPOSE ${agent_port}
2015-03-17 10:24:05 +00:00
ENV COPY_REFERENCE_FILE_LOG $JENKINS_HOME/copy_reference_file.log
2015-04-28 13:32:11 +00:00
USER ${user}
2015-03-17 10:24:05 +00:00
COPY jenkins-support /usr/local/bin/jenkins-support
2015-03-17 10:24:05 +00:00
COPY jenkins.sh /usr/local/bin/jenkins.sh
ENTRYPOINT ["/sbin/tini", "--", "/usr/local/bin/jenkins.sh"]
2015-03-17 10:24:05 +00:00
2015-10-25 09:16:16 +00:00
# from a derived Dockerfile, can use `RUN plugins.sh active.txt` to setup /usr/share/jenkins/ref/plugins from a support bundle
2015-03-17 10:24:05 +00:00
COPY plugins.sh /usr/local/bin/plugins.sh
COPY install-plugins.sh /usr/local/bin/install-plugins.sh