github.com/hustcat/docker@v1.3.3-0.20160314103604-901c67a8eeab/builder/dockerfile/internals_windows.go (about) 1 // +build windows 2 3 package dockerfile 4 5 func fixPermissions(source, destination string, uid, gid int, destExisted bool) error { 6 // chown is not supported on Windows 7 return nil 8 }