mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
def549c8f6
Co-authored-by: Paweł Gronowski <pawel.gronowski@docker.com> Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
12 lines
267 B
Go
12 lines
267 B
Go
package containerd
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/docker/docker/builder"
|
|
)
|
|
|
|
// MakeImageCache creates a stateful image cache.
|
|
func (i *ImageService) MakeImageCache(ctx context.Context, cacheFrom []string) (builder.ImageCache, error) {
|
|
panic("not implemented")
|
|
}
|