commit d34470cdfffb94cae23bac5be84b8a74df7d7792 Author: Dustin C. Hatch Date: Mon Dec 1 20:57:29 2025 -0600 Initial commit diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..97e0912 --- /dev/null +++ b/Containerfile @@ -0,0 +1,6 @@ +FROM docker.io/library/alpine + +RUN --mount=type=cache,target=/var/cache \ + apk add pgbouncer + +ENTRYPOINT ["pgbouncer"] diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..53f4c20 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,4 @@ +buildContainerImage2( + archlist: ['amd64', 'arm64'], + project: 'infra', +)