kompose/vendor/github.com/docker/docker/builder/context_unix.go
2016-07-18 23:23:39 +07:00

12 lines
163 B
Go

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