Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/release/tools/oci-image-notoolchain.conf
105382 views
1
#! /bin/sh
2
3
# Build OCI container image with almost all packages suitable for jails,
4
# excluding toolchain.
5
6
OCI_BASE_IMAGE=runtime
7
8
oci_image_build() {
9
set_cmd ${workdir} /bin/sh
10
install_packages ${abi} ${workdir} \
11
FreeBSD-bmake \
12
FreeBSD-dma \
13
FreeBSD-inetd \
14
FreeBSD-ipf \
15
FreeBSD-ipfw \
16
FreeBSD-natd \
17
FreeBSD-netmap \
18
FreeBSD-pf \
19
FreeBSD-ssh \
20
FreeBSD-telnet \
21
FreeBSD-xz \
22
FreeBSD-zfs \
23
FreeBSD-set-minimal-jail
24
}
25
26
27