Currently, we have a workflow that consists of
- docker build
- docker save
- ctr import
I'd love to be able to streamline this process with Dagger, and we have the first two with container.Export (https://pkg.go.dev/dagger.io/dagger#Container.Export)
What I'd like to be able to do is get the bytes and use io.Copy or similar to ship the bytes directly to containerd.
Is this possible today? Do we need another SDK function?