From 658d133390120105cf673cd7dfe5d3436be29d38 Mon Sep 17 00:00:00 2001 From: Shion Tanaka Date: Sat, 27 Nov 2021 13:34:04 +0900 Subject: Fixed the containerfile not found during remote build. [NO NEW TESTS NEEDED] Signed-off-by: Shion Tanaka --- pkg/bindings/images/build.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkg/bindings/images/build.go b/pkg/bindings/images/build.go index 4c3c83837..63cc508dc 100644 --- a/pkg/bindings/images/build.go +++ b/pkg/bindings/images/build.go @@ -345,6 +345,11 @@ func Build(ctx context.Context, containerFiles []string, options entities.BuildO } c = tmpFile.Name() } + cfDir := filepath.Dir(c) + if absDir, err := filepath.EvalSymlinks(cfDir); err == nil { + name := filepath.ToSlash(strings.TrimPrefix(c, cfDir+string(filepath.Separator))) + c = filepath.Join(absDir, name) + } containerfile, err := filepath.Abs(c) if err != nil { logrus.Errorf("cannot find absolute path of %v: %v", c, err) -- cgit v1.2.3-54-g00ecf