commit 6de6e20ee44def74eee8f0fad36b15c6cbe50c5a Author: Dustin C. Hatch Date: Wed Jul 2 15:15:57 2025 -0500 Initial commit diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..4f1a47b --- /dev/null +++ b/Containerfile @@ -0,0 +1,15 @@ +FROM git.pyrocufflink.net/containerimages/jenkins-base + +RUN --mount=type=cache,target=/var/cache \ + dnf install -y \ + --setopt persistdir=/var/cache/dnf \ + --setopt install_weak_deps=0 \ + git-core \ + make \ + openssh-clients \ + python3 \ + python3-jinja2 \ + rsync \ + && : + +USER jenkins diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..95632a5 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1 @@ +buildContainerImage()