Customize Jenkins JNLP slave image
FROM jenkins/jnlp-slave
LABEL maintainer "Daniel Guo <gdaniel@vmware.com>"
USER root
# You customization starts here
RUN apt-get -y update && apt-get install -y curl
USER jenkins
WORKDIR /home/jenkins
ENTRYPOINT ["jenkins-slave"]
Last updated
Was this helpful?