File tree 2 files changed +2
-2
lines changed 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.510 -jdk21
4
+ ARG JENKINS_VERSION=2.511 -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 1
1
# This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed.
2
2
3
3
# We start from the Debian 'bookworm' image dated 2023-11-20.
4
- FROM debian:bookworm-20250428 as prepare-stage
4
+ FROM debian:bookworm-20250520 as prepare-stage
5
5
6
6
# Copy all shell scripts from the current directory to /usr/local/bin/ in the image.
7
7
COPY *sh /usr/local/bin/
You can’t perform that action at this time.
0 commit comments