Files
jenkins-shared-libs/vars
Dustin C. Hatch 80de47047c bci2: Add buildArgs argument
The `buildArgs` argument to `buildContainerImage2` accepts a list of
arguments that will be passed as `--build-arg` values to the `buildah
build` command.  For example,

```groovy
buildContainerImage2(buildArgs: ['FOO=bar'])
```

Would result in a command like

```sh
buildah build --build-arg FOO=bar ...
```
2025-12-01 20:48:26 -06:00
..