Tad Cordle
Tad Cordle
Right now, Jib only supports Docker daemon images and Docker-formatted tars locally. As a follow-up to #2124, it'd be good to allow Jib to use local OCI base images. We...
Since our integration tests use Docker, we don't really have any tests right now for OCI images built by Jib. We should consider looking into ways of building/running OCI images...
This should just a matter of replacing ``` index.addManifest(manifestDescriptor, imageReference.toStringWithTag()); ``` with ``` for (String tag : allTargetImageTags) { index.addManifest(manifestDescriptor, imageReference.withTag(tag).toStringWithTag()); } ``` in `ImageTarball`. Just need a way to...