1
0
Fork 0
traefik/vendor/github.com/docker/docker/builder/context_unix.go
2017-03-09 13:13:02 +01:00

11 lines
163 B
Go

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