File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
# This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings.
2
2
3
3
# 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.518 -jdk21
4
+ ARG JENKINS_VERSION=2.519 -jdk21
5
5
6
6
# We then use the official Jenkins image with the specified version as our base image.
7
7
FROM 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
5
5
rm -rf /var/lib/apt/lists/*
6
6
7
7
# Now time to install golang
8
- ARG GOLANG_VERSION=1.24.4
8
+ ARG GOLANG_VERSION=1.24.5
9
9
ARG TARGETARCH
10
10
ENV ARCHITECTURE=$TARGETARCH
11
11
You can’t perform that action at this time.
0 commit comments