
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")
|
|
}
|