mirror of https://github.com/containers/podman.git
Fixed the containerfile not found during remote build.
[NO NEW TESTS NEEDED] Signed-off-by: Shion Tanaka <shtanaka@redhat.com>
This commit is contained in:
parent
7324d94648
commit
0ddb094480
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue