commit e9c62df447b9debe85b661c5540a93fd9e5bfc42 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..e01247b --- /dev/null +++ b/Containerfile @@ -0,0 +1,12 @@ +FROM registry.fedoraproject.org/fedora:latest + +RUN --mount=type=cache,target=/var/cache \ + dnf install -y \ + make \ + selinux-policy-devel \ + tini \ + && : + +USER 101:101 + +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'])