Skip to content
Snippets Groups Projects
Select Git revision
  • ce8cf1b9006f3571cd94fd3f437d4535d4f863c8
  • experimental
  • master
  • v2021.1.2-ffs
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • v2020.2.3-ffs
  • nrbffs/fastd-remove-delay
  • v2020.2.2-ffs
  • v2020.2.1-ffs
  • v2020.2-ffs
  • v2020.2.x
  • v2020.1.3-ffs
  • v2020.1.1-ffs
  • v2020.1-ffs
  • v2019.1.2-ffs
  • v2019.1.1-ffs
  • nrb/test-radv-filter
  • v2019.1-ffs
  • nrbffs/netgear-ex6120
  • v2021.1.2-ffs0.2
  • v2021.1.2-ffs0.1
  • v2021.1.1-ffs0.4
  • v2021.1.1-ffs0.3
  • v2021.1.1-ffs0.2
  • v2021.1.1-ffs0.1
  • v2021.1-ffs0.1
  • v2020.2.3-ffs0.3
  • v2020.2.3-ffs0.2
  • v2020.2.3-ffs0.1
  • v2020.2.2-ffs0.1
  • v2020.2.1-ffs0.1
  • v2020.2-ffs0.1
  • v2020.2
  • v2020.2.x-ffs0.1
  • v2020.1.3-ffs0.1
  • v2020.1.1-ffs0.1
  • v2020.1-ffs0.1
  • v2019.1.2-ffs0.1
  • v2019.1.1-ffs0.1
41 results

ramips-mt76x8

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    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" ]