From b68106703e8929c2ba313fd580032ea5bf43ccf2 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Sat, 3 Apr 2021 06:36:51 -0400 Subject: Handle podman-remote --arch, --platform, --os Podman remote should be able to handle remote specification of arches. Requires: https://github.com/containers/buildah/pull/3116 Signed-off-by: Daniel J Walsh --- pkg/bindings/images/build.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'pkg/bindings/images') diff --git a/pkg/bindings/images/build.go b/pkg/bindings/images/build.go index c47a16551..34d6cee05 100644 --- a/pkg/bindings/images/build.go +++ b/pkg/bindings/images/build.go @@ -12,6 +12,7 @@ import ( "os" "path/filepath" "regexp" + "runtime" "strconv" "strings" @@ -190,6 +191,10 @@ func Build(ctx context.Context, containerFiles []string, options entities.BuildO platform = "linux" } platform += "/" + options.Architecture + } else { + if len(platform) > 0 { + platform += "/" + runtime.GOARCH + } } if len(platform) > 0 { params.Set("platform", platform) -- cgit v1.2.3-54-g00ecf