From 74802472b40bfe74fda9bee09cf6b7ce01a97f74 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Fri, 2 Dec 2022 21:58:06 -0600 Subject: [PATCH] Initial commit --- Containerfile | 7 +++++++ Jenkinsfile | 1 + 2 files changed, 8 insertions(+) create mode 100644 Containerfile create mode 100644 Jenkinsfile diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..f0b0035 --- /dev/null +++ b/Containerfile @@ -0,0 +1,7 @@ +FROM git.pyrocufflink.net/containerimages/rsync + +COPY --from=ghcr.io/getzola/zola:v0.16.1 /bin/zola /usr/local/bin/zola + +USER jenkins + +CMD ["/bin/python3", "-c", "import signal; signal.pause()"] diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..95632a5 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1 @@ +buildContainerImage()