Add CreateImage() to the daemon Refactor daemon.Comit() and expose a Image.NewChild() Update copy to use IDMappings. Signed-off-by: Daniel Nephin <dnephin@docker.com> Upstream-commit: bd5f92d2631df7c932b93e72e45b39cba19f2f3b Component: engine
9 lines
199 B
Go
9 lines
199 B
Go
package dockerfile
|
|
|
|
import "github.com/docker/docker/pkg/idtools"
|
|
|
|
func fixPermissions(source, destination string, rootIDs idtools.IDPair) error {
|
|
// chown is not supported on Windows
|
|
return nil
|
|
}
|