File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11# This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings.
22
33# We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use.
4- ARG JENKINS_VERSION=2.532 -jdk21
4+ ARG JENKINS_VERSION=2.536 -jdk21
55
66# We then use the official Jenkins image with the specified version as our base image.
77FROM jenkins/jenkins:"${JENKINS_VERSION}"
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates
55 rm -rf /var/lib/apt/lists/*
66
77# Now time to install golang
8- ARG GOLANG_VERSION=1.25.3
8+ ARG GOLANG_VERSION=1.25.4
99ARG TARGETARCH
1010ENV ARCHITECTURE=$TARGETARCH
1111
Original file line number Diff line number Diff line change 11FROM jenkins/ssh-agent:7.2.0-jdk21 as ssh-agent
2- ARG NODE_MAJOR=22
2+ ARG NODE_MAJOR=24
33
44# ca-certificates because curl uses certificates from ca-certificates
55RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl gnupg && \
You can’t perform that action at this time.
0 commit comments