28 lines
698 B
Docker
28 lines
698 B
Docker
FROM gluon
|
|
|
|
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 python python-pip git
|
|
RUN pip install jenkins-webapi
|
|
|
|
# Get docker-compose in the agent container
|
|
RUN mkdir -p /home/jenkins
|
|
RUN mkdir -p /var/lib/jenkins
|
|
|
|
# Start-up script to attach the slave to the master
|
|
ADD slave.py /var/lib/jenkins/slave.py
|
|
|
|
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 [ "python", "-u", "/var/lib/jenkins/slave.py" ]
|