Major Changes
- Incubating feature: can now configure desired platform (architecture and OS) to select the matching manifest from a Docker manifest list for a base image. Currently supports building only one image. OCI image indices are not supported. (#1567)
<from> <image>... image reference to a manifest list ...</image> <platforms> <platform> <architecture>arm64</architecture> <os>linux</os> </platform> </platforms> </from>
- Now supports sending client certificate (for example, via the
javax.net.ssl.keyStore
andjavax.net.ssl.keyStorePassword
system properties) and thus enabling mutual TLS authentication. (#2585, #2226) - Fixed reporting a wrong credential helper name when the helper does not exist on Windows. (#2527)
- Also tries
.exe
file extension for credential helpers on Windows. (#2527) - Fixed
NullPointerException
when the"auths":
section in~/.docker/config.json
has an entry with no"auth":
field. (#2535) - New system property
jib.skipExistingImages
(false by default) to skip pushing images (manifests) if the image already exists in the registry. (#2360) - Fixed an issue where Jib cannot infer Kotlin main class that takes no arguments. (#2666)
- Fixed build failure with
<containerizingMode>packaged
in Spring Boot projects where Jib assumed a wrong JAR path when<finalName>
or<classifier>
is configured in Spring Boot. (#2565)
See CHANGELOG.md for more details.