From 92b46967ec680a4d1aa24bb28447e1a82ed7504d Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Fri, 26 Jul 2024 21:02:42 -0500 Subject: [PATCH] Initial commit --- Containerfile | 8 ++++++++ Jenkinsfile | 1 + 2 files changed, 9 insertions(+) create mode 100644 Containerfile create mode 100644 Jenkinsfile diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..7b4ccd7 --- /dev/null +++ b/Containerfile @@ -0,0 +1,8 @@ +FROM docker.io/library/alpine + +RUN --mount=type=cache,target=/var/cache \ + apk add \ + step-cli \ + && : + +ENTRYPOINT ["step"] diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..b8c93a4 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1 @@ +buildContainerImage2(archlist: ['amd64', 'arm64'])