github.com/ncdc/docker@v0.10.1-0.20160129113957-6c6729ef5b74/api/client/utils_unix.go (about)

     1  // +build !windows
     2  
     3  package client
     4  
     5  import (
     6  	"path/filepath"
     7  )
     8  
     9  func getContextRoot(srcPath string) (string, error) {
    10  	return filepath.Join(srcPath, "."), nil
    11  }