mirror of
https://github.com/redhat-actions/buildah-build.git
synced 2025-04-20 09:01:23 +00:00
fix port setting issue
Signed-off-by: Luca Stocchi <lstocchi@redhat.com>
This commit is contained in:
parent
b5c3b226ac
commit
69952a8f62
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ export class BuildahCli implements Buildah {
|
||||||
}
|
}
|
||||||
if (settings.port) {
|
if (settings.port) {
|
||||||
args.push('--port');
|
args.push('--port');
|
||||||
args.push(...settings.port);
|
args.push(settings.port);
|
||||||
}
|
}
|
||||||
args.push(container);
|
args.push(container);
|
||||||
return await this.execute(args);
|
return await this.execute(args);
|
||||||
|
|
Loading…
Reference in a new issue