mirror of
https://github.com/containers/podman.git
synced 2025-05-22 09:36:57 +08:00

Move the options for the podman build doc to a common md that can be used by both podman build and podman farm build. Signed-off-by: Urvashi Mohnani <umohnani@redhat.com>
23 lines
952 B
Markdown
23 lines
952 B
Markdown
####> This option file is used in:
|
|
####> podman build, farm build
|
|
####> If file is edited, make sure the changes
|
|
####> are applicable to all of those.
|
|
#### **--build-arg-file**=*path*
|
|
|
|
Specifies a file containing lines of build arguments of the form `arg=value`.
|
|
The suggested file name is `argfile.conf`.
|
|
|
|
Comment lines beginning with `#` are ignored, along with blank lines.
|
|
All others must be of the `arg=value` format passed to `--build-arg`.
|
|
|
|
If several arguments are provided via the `--build-arg-file`
|
|
and `--build-arg` options, the build arguments are merged across all
|
|
of the provided files and command line arguments.
|
|
|
|
Any file provided in a `--build-arg-file` option is read before
|
|
the arguments supplied via the `--build-arg` option.
|
|
|
|
When a given argument name is specified several times, the last instance
|
|
is the one that is passed to the resulting builds. This means `--build-arg`
|
|
values always override those in a `--build-arg-file`.
|