mirror of
https://github.com/redhat-actions/buildah-build.git
synced 2025-06-08 01:49:03 +00:00
Fix: platform parameter is not supported by buildah config (build-without-containerfile) (#83)
Signed-off-by: James Addison <jay@jp-hosting.net>
This commit is contained in:
parent
733d8e9a38
commit
bb88487cd2
7 changed files with 11 additions and 12 deletions
|
@ -15,7 +15,6 @@ export interface BuildahConfigSettings {
|
|||
port?: string;
|
||||
workingdir?: string;
|
||||
arch?: string;
|
||||
platform?: string;
|
||||
}
|
||||
|
||||
interface Buildah {
|
||||
|
@ -140,10 +139,6 @@ export class BuildahCli implements Buildah {
|
|||
args.push("--arch");
|
||||
args.push(settings.arch);
|
||||
}
|
||||
if (settings.platform) {
|
||||
args.push("--platform");
|
||||
args.push(settings.platform);
|
||||
}
|
||||
if (settings.workingdir) {
|
||||
args.push("--workingdir");
|
||||
args.push(settings.workingdir);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue