# ============LICENSE_START======================================================= # Copyright (C) 2019 The Nordix Foundation. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # SPDX-License-Identifier: Apache-2.0 # ============LICENSE_END========================================================= #------------------------------------------------------------------------------- # This Dockerfile is used for building container images to # use as Jenkins Slaves for Nordix Infra. The image is configured # and tested for running # - Jenkins Job Builder Verify and Merge jobs using tox # - ONAP report generation # # The image built using this Dockerfile is currently being stored on Nordix registry # with the name nordixorg/infra-tools-docker-slave-ubuntu1804 which can be seen # using the link below. # https://registry.nordix.org/harbor/projects/29/repositories/infra-tools-docker-slave-ubuntu1804 # The images are automatically attached to Jenkins as slaves using Jenkins # Docker plugin with a name that looks like infra-ubuntu1804- # # In order to use this image as slave for your jobs, you need to use label # infra-tools-docker-slave-ubuntu1804 so Jenkins schedules your job on this slave # which gets provisioned by Jenkins Docker plugin. Please note that it takes few # seconds before the slave becomes ready and job starts running. #------------------------------------------------------------------------------- # Please use this docker file to build new Nordix docker slave image. # Here are the steps required to build and upload the new image to Nordix registry # 1. Login to Nordix Harbor with account that have write access to nordixorg repository # $ docker login registry.nordix.org # 2. Build new image using the correct path and tag version. For example: # $ docker build . -t "registry.nordix.org/nordixorg/infra-tools-docker-slave-ubuntu1804:5-jdk11" # 3. Upload new image to Nordix registry # $ docker push registry.nordix.org/nordixorg/infra-tools-docker-slave-ubuntu1804:5-jdk11 #------------------------------------------------------------------------------- FROM jenkins/jnlp-slave:latest-jdk11 USER root # we need few basic packages in order to use base image as Jenkins slave RUN apt update RUN apt upgrade -o Dpkg::Options::=--force-confdef -o \ Dpkg::Options::=--force-confnew -q=3 -y RUN apt install -o Dpkg::Options::=--force-confdef -o \ Dpkg::Options::=--force-confnew -q=3 -y git vim sudo \ software-properties-common wget jq gnupg # FixMe: New version of Jenkins LTS 2.426.1 requires agent version 4.13 or newer # 13 Dec 2023: The latest jnlp-slave base image contains agent 4.9 # https://hub.docker.com/r/jenkins/jnlp-slave/tags ENV VERSION=4.14 RUN curl --create-dirs -fsSLo /usr/share/jenkins/agent.jar https://repo.jenkins-ci.org/public/org/jenkins-ci/main/remoting/${VERSION}/remoting-${VERSION}.jar && chmod 644 /usr/share/jenkins/agent.jar && chown jenkins:jenkins /usr/share/jenkins/agent.jar # add ubuntu repos for python3.6-minimal and the key RUN add-apt-repository 'deb [arch=amd64] http://archive.ubuntu.com/ubuntu bionic main' RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 3B4FE6ACC0B21F32 RUN apt update # we need yq for ONAP report generation RUN wget -O /usr/local/bin/yq https://github.com/mikefarah/yq/releases/download/3.3.0/yq_linux_amd64 RUN chmod +x /usr/local/bin/yq # we install system packages as part of Jenkins verify jobs so # jenkins user needs to be able to run sudo RUN usermod -aG sudo jenkins # without tty RUN sed -i "s/^Defaults.*env_reset/#&\nDefaults:jenkins \!requiretty/" /etc/sudoers # and without password RUN sed -i "s/^%sudo.*ALL/%sudo ALL=(ALL:ALL) NOPASSWD: ALL/" /etc/sudoers # switch back to jenkins user USER jenkins # create slave_root folder same as what we use on regular slaves RUN mkdir -p /home/jenkins/nordix/slave_root