commit f5312ee872a55457b11fc5aba773a446fd7ff2ba Author: Dustin C. Hatch Date: Tue Oct 24 18:11:46 2023 -0500 Initial commit diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..cb101cc --- /dev/null +++ b/Containerfile @@ -0,0 +1,10 @@ +FROM registry.fedoraproject.org/fedora:latest + +RUN --mount=type=cache,target=/var/cache \ + dnf install -y \ + make \ + selinux-policy-devel \ + tini \ + && : + +CMD ["tini", "sleep", "--", "infinity"] diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..00f66c4 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,3 @@ +// vim: set ft=groovy : + +buildContainerImage2(name: 'build/selinux', archlist: ['amd64', 'arm64'])