Tad Cordle

Results 3 issues of 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...

area/jib-maven-plugin
area/jib-core
p3
area/jib-gradle-plugin
area/jib-cli
kind/feature

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...

area/jib-maven-plugin
area/jib-core
area/jib-gradle-plugin
kind/tech debt
area/jib-cli

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...

area/jib-maven-plugin
area/jib-core
p3
area/jib-gradle-plugin
area/jib-cli
kind/feature