mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
694df3ff9f
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
12 lines
241 B
Go
12 lines
241 B
Go
// +build !windows
|
|
|
|
package distribution
|
|
|
|
import (
|
|
"github.com/docker/distribution/manifest/schema1"
|
|
"github.com/docker/docker/image"
|
|
)
|
|
|
|
func detectBaseLayer(is image.Store, m *schema1.Manifest, rootFS *image.RootFS) error {
|
|
return nil
|
|
}
|