mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d1c34831e9
Libcontainer no longer provides placeholders for unsupported platforms, which cause the Windows builds to fail. This patch moves features that are not supported to platform-specific files. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
7 lines
209 B
Go
7 lines
209 B
Go
package dockerfile
|
|
|
|
import "github.com/docker/docker/pkg/idtools"
|
|
|
|
func parseChownFlag(chown, ctrRootPath string, idMappings *idtools.IDMappings) (idtools.IDPair, error) {
|
|
return idMappings.RootPair(), nil
|
|
}
|