Skip to content
Snippets Groups Projects
Select Git revision
  • 02fd2d04b0623019ecd449c5965463700ff7735d
  • experimental default protected
  • v2023.2.5-ffs
  • nrb/ex400-remove-wps
  • nrb/airmax-test
  • v2023.2.4-ffs
  • nrb/ar9344-reset-sequence
  • autinerd/experimental-openwrt-24.10
  • v2023.2.3-ffs
  • v2023.2.2-ffs
  • v2023.2-ffs
  • v2023.1-ffs
  • v2022.1.4-ffs
  • feature/addMikrotikwAP
  • v2022.1.3-ffs
  • v2021.1.2-ffs
  • v2022.1.1-ffs
  • master protected
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • experimental-2025-07-04
  • experimental-2025-07-04-base
  • experimental-2025-07-01
  • experimental-2025-07-01-base
  • experimental-2025-06-25
  • experimental-2025-06-25-base
  • experimental-2025-06-24
  • experimental-2025-06-24-base
  • experimental-2025-06-22
  • experimental-2025-06-22-base
  • v2023.2.5-ffs0.1
  • experimental-2025-06-08
  • experimental-2025-06-08-base
  • experimental-2025-06-06
  • experimental-2025-06-06-base
  • experimental-2025-05-27
  • experimental-2025-05-27-base
  • experimental-2025-05-18
  • experimental-2025-05-18-base
  • experimental-2025-05-15
41 results

v2020.1.4.rst

Blame
  • Dockerfile 875 B
    FROM gluonmesh/build:latest
    
    USER root
    
    # this is needed to install default-jre-headless in debian slim images
    RUN mkdir -p /usr/share/man/man1
     
    RUN apt-get update && apt-get install -y default-jre-headless curl python3 python3-pip python3-sphinx git
    RUN pip3 install jenkins-webapi sphinx_rtd_theme
     
    # Get docker-compose in the agent container
    RUN mkdir -p /home/jenkins
    RUN mkdir -p /var/lib/jenkins
    RUN mkdir -p /remoting
    RUN chown gluon /home/jenkins
    RUN chown gluon /var/lib/jenkins
    RUN chown gluon /remoting
     
    # Start-up script to attach the slave to the master
    ADD slave.py /var/lib/jenkins/slave.py
    
    USER gluon
     
    WORKDIR /home/jenkins
    
    ENV JENKINS_URL "https://build.ffh.zone/"
    ENV JENKINS_SLAVE_ADDRESS ""
    ENV SLAVE_EXECUTORS "1"
    ENV SLAVE_LABELS "docker"
    ENV SLAVE_WORING_DIR ""
    ENV CLEAN_WORKING_DIR "true"
     
    CMD [ "python3", "-u", "/var/lib/jenkins/slave.py" ]