blob: 890641cee30035aa3aa4a2ab8d663dfbeb7e1057 (
plain)
1
2
3
4
5
6
7
|
This example Containerfile shows how to add packages to freebsd-runtime 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
|