moby--moby/builder/context_unix.go

12 lines
163 B
Go

// +build !windows
package builder
import (
"path/filepath"
)
func getContextRoot(srcPath string) (string, error) {
return filepath.Join(srcPath, "."), nil
}