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> Upstream-commit: d1c34831e930c1f6b3de28cab3f4a358845a79d5 Component: engine
8 lines
209 B
Go
8 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
|
|
}
|