forked from jenkinsci/docker-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request jenkinsci#44 from batmat/merge-branches
Merge branches
- Loading branch information
Showing
3 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# The MIT License | ||
# | ||
# Copyright (c) 2015-2017, CloudBees, Inc. and other Jenkins contributors | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
# THE SOFTWARE. | ||
|
||
FROM openjdk:8-jdk-alpine | ||
MAINTAINER Oleg Nenashev <[email protected]> | ||
|
||
ARG VERSION=3.28 | ||
ARG user=jenkins | ||
ARG group=jenkins | ||
ARG uid=1000 | ||
ARG gid=1000 | ||
|
||
ENV HOME /home/${user} | ||
RUN addgroup -g ${gid} ${group} | ||
RUN adduser -h $HOME -u ${uid} -G ${group} -D ${user} | ||
LABEL Description="This is a base image, which provides the Jenkins agent executable (slave.jar)" Vendor="Jenkins project" Version="${VERSION}" | ||
|
||
ARG AGENT_WORKDIR=/home/${user}/agent | ||
|
||
RUN apk add --update --no-cache curl bash git openssh-client openssl procps \ | ||
&& curl --create-dirs -sSLo /usr/share/jenkins/slave.jar https://repo.jenkins-ci.org/public/org/jenkins-ci/main/remoting/${VERSION}/remoting-${VERSION}.jar \ | ||
&& chmod 755 /usr/share/jenkins \ | ||
&& chmod 644 /usr/share/jenkins/slave.jar \ | ||
&& apk del curl | ||
USER ${user} | ||
ENV AGENT_WORKDIR=${AGENT_WORKDIR} | ||
RUN mkdir /home/${user}/.jenkins && mkdir -p ${AGENT_WORKDIR} | ||
|
||
VOLUME /home/${user}/.jenkins | ||
VOLUME ${AGENT_WORKDIR} | ||
WORKDIR /home/${user} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# The MIT License | ||
# | ||
# Copyright (c) 2015-2017, CloudBees, Inc. and other Jenkins contributors | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
# THE SOFTWARE. | ||
|
||
FROM openjdk:11-jdk | ||
MAINTAINER Oleg Nenashev <[email protected]> | ||
|
||
ARG user=jenkins | ||
ARG group=jenkins | ||
ARG uid=1000 | ||
ARG gid=1000 | ||
|
||
ENV HOME /home/${user} | ||
RUN groupadd -g ${gid} ${group} | ||
RUN useradd -c "Jenkins user" -d $HOME -u ${uid} -g ${gid} -m ${user} | ||
LABEL Description="This is a base image, which provides the Jenkins agent executable (slave.jar)" Vendor="Jenkins project" Version="3.27" | ||
|
||
ARG VERSION=3.27 | ||
ARG AGENT_WORKDIR=/home/${user}/agent | ||
|
||
RUN curl --create-dirs -sSLo /usr/share/jenkins/slave.jar https://repo.jenkins-ci.org/public/org/jenkins-ci/main/remoting/${VERSION}/remoting-${VERSION}.jar \ | ||
&& chmod 755 /usr/share/jenkins \ | ||
&& chmod 644 /usr/share/jenkins/slave.jar | ||
|
||
USER ${user} | ||
ENV AGENT_WORKDIR=${AGENT_WORKDIR} | ||
RUN mkdir /home/${user}/.jenkins && mkdir -p ${AGENT_WORKDIR} | ||
|
||
VOLUME /home/${user}/.jenkins | ||
VOLUME ${AGENT_WORKDIR} | ||
WORKDIR /home/${user} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
set -euxo pipefail | ||
|
||
for dockerfile in Dockerfile* | ||
do | ||
dockertag=$( echo "$dockerfile" | cut -d ' ' -f 2 ) | ||
if [[ "$dockertag" = "$dockerfile" ]]; then | ||
dockertag='latest' | ||
fi | ||
echo "Building $dockerfile => tag=$dockertag" | ||
docker build -t jenkins/slave:$dockertag . | ||
docker build -t jenkins/agent:$dockertag . | ||
done | ||
|
||
echo "Build finished successfully" |