From 0ddb094480e0dea132f1f81008baabd408bf1bdd 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 3b0bebe9f..107b10014 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