mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
This adds three OCI archive format files to the release containing
FreeBSD base images suitable for static linked, dynamic linked and shell
workloads. The shell image also contains pkg-bootstrap and can be easily
extended by installing packages (including pkgbase packages).
Approved by: re (cperciva)
Reviewed by: dch, cpersiva, jlduran, zlei
Differential Revision: https://reviews.freebsd.org/D46759
MFC after: 2 days
(cherry picked from commit d03c82c28da86e0812b98b051d24ae5980804ad7)
(cherry picked from commit 6686056ca3)
7 lines
314 B
Text
7 lines
314 B
Text
This example Containerfile shows how to add packages to freebsd-minimal while
|
|
minimising the package metadata overhead.
|
|
|
|
For instance, To build a new image called 'my-new-image:latest' containing the
|
|
nginx package:
|
|
|
|
# podman build --squash --build-arg packages=nginx --tag my-new-image:latest -f Containerfile.pkg
|