All notable changes to this project will be documented in this file.
- feat: add default base image for Java 25 (#4436)
- deps: update
org.ow2.asm:asmto version 9.8 for java 25 support
- fix: address windows deadlock issue when determining docker environment info #4267
- fix: allow pushing images with different arch/os to docker daemon #4265
- fix: address windows deadlock issue when determining docker environment info #4267
- fix: When building to the local docker daemon with multiple platforms configured, Jib will now automatically select the image that matches the OS type and architecture of the local Docker environment. (#4249)
- deps: bump org.apache.commons:commons-compress from 1.21 to 1.26.0 (#4204)
- fix: set PAX headers to address build reproducibility issue (#4204)
- fix: (WAR Containerization) modify default entrypoint to
java -jar /usr/local/jetty/start.jar --module=ee10-deployfor Jetty 12+ compatibility (#4216)
- fix: support parsing manifest JSON containing
LayerSources:from latest Docker. (#4171)
- feat: support gradle lazy configuration for entrypoint container parameter. (#4003)
- deps: bump com.github.luben:zstd-jni from 1.5.5-2 to 1.5.5-4. (#4049)
- deps: bump com.fasterxml.jackson:jackson-bom from 2.15.0 to 2.15.2. (#4055)
- deps: bump com.google.guava:guava from 32.0.1-jre to 32.1.2-jre (#4078)
- deps: bump org.slf4j:slf4j-simple from 2.0.7 to 2.0.9. (#4098)
- fix: fix WWW-Authenticate header parsing for Basic authentication (#4035)
- Fixed Gradle deprecations for Gradle 8.2. (#3892)
- Support lazy configuration for
jib.container.mainClassandjib.container.jvmFlagsparameters (#3936)
- Log an info instead of warning when entrypoint makes the image to ignore jvm parameters (#3904)
Thanks to our community contributors @rmannibucau, @erdi!
- Added lazy evaluation for
jib.container.creationTimeandjib.container.filesModificationTimeparameters using Gradle Property and Provider. (#3709)
- Upgraded Google HTTP libraries to 1.42.2 (#3745)
- Fixed issue with
jibBuildTar'sUP-TO-DATEcheck by adding back mainSourceSet's outputs to task dependency (#3793)
Thanks to our community contributors @creckord!
- Included
imagePushedfield to image metadata json output file which provides information on whether an image was pushed by Jib. Note that the output file isbuild/jib-image.jsonby default or configurable withjib.outputPaths.imageJson. (#3641) - Added lazy evaluation for
jib.extraDirectoriesparameters using Gradle Property and Provider. (#3737) - Better error messaging when environment map in
container.environmentcontains null values (#3672). - Support for OCI image index manifests (#3715).
- Support for base image layer compressed with zstd (#3717).
- Upgraded slf4j-api to 2.0.0 (#3735).
- Upgraded nullaway to 0.9.9 (#3720)
- Jib now only checks for file existence instead of running the executable passed into
dockerClient.executablefor the purpose of verifying if docker is installed correctly. Users are responsible for ensuring that the docker executable specified through this property is valid and has the correct permissions (#3744). - Jib now throws an exception when the base image doesn't support target platforms during multi-platform build (#3707).
Thanks to our community contributors @wwadge, @oliver-brm, @rquinio and @gsquared94!
- Environment variables can now be used in configuring credential helpers. (#2814)
jib.to { image = 'myimage' credHelper { helper = 'ecr-login' environment = [ AWS_PROFILE: 'profile' ] } }
- Upgraded jackson-databind to 2.13.2.2 (#3612).
- Fixed setting image format in Kotlin (#3593).
jib.from.platformsparameter for multi-architecture image building can now be configured through Maven and system properties (for example,-Djib.from.platforms=linux/amd64,linux/arm64on the command-line). (#2742)- For retrieving credentials, Jib additionally looks for
$XDG_RUNTIME_DIR/containers/auth.json,$XDG_CONFIG_HOME/containers/auth.json, and$HOME/.config/containers/auth.json. (#3524)
- Changed the default base image of the Jib CLI
jarcommand from theadoptopenjdkimages to theeclipse-temurinon Docker Hub. Note that Temurin (by Adoptium) is the new name of AdoptOpenJDK. (#3483) - Build will fail if
extraDirectories.pathscontainfromdirectory that doesn't exist locally (#3542)
- Fixed
ClassCastExceptionwhen using non-Stringvalue (for example,Provider) forMain-Classmanifest attribute of thejartask. (#3396) - Fixed incorrect parsing with comma escaping when providing Jib list or map property values on the command-line. (#2224)
- Downgraded Google HTTP libraries to 1.34.0 to resolve network issues. (#3415, #3058, #3409)
- If
allowInsecureRegistries=true, HTTP requests are retried on I/O errors only after insecure failover is finalized for each server. (#3422)
- Increased robustness in registry communications by retrying HTTP requests (to the effect of retrying image pushes or pulls) on I/O exceptions with exponential backoffs. (#3351)
- Now also supports
usernameandpasswordproperties for theauthssection in a Docker config (~/.docker/config.json). (Previously, only supported was a base64-encoded username and password string of theauthproperty.) (#3365)
- Upgraded Google HTTP libraries to 1.39.2. (#3387)
- Fixed the bug introduced in 3.1 that constructs a wrong Java runtime classpath when two dependencies have the same artifact ID and version but different group IDs. The bug occurs only when using Java 9+ or setting
jib.container.expandClasspathDependencies. (#3331)
- Fixed the regression introduced in 3.1.0 where a build may fail due to an error from main class inference even if
jib.container.entrypointis configured. (#3295)
- For Google Artifact Registry (
*-docker.pkg.dev), Jib now tries Google Application Default Credentials last like it has been doing forgcr.io. (#3241) - Added lazy evaluation for
jib.container.labelsusing Gradle Property and Provider. (#3242)
- Jib now creates an additional layer that contains two small text files:
/app/jib-classpath-fileand/app/jib-main-class-file. They hold, respectively, the final Java runtime classpath and the main class computed by Jib that are suitable for app execution on JVM. For example, with Java 9+, setting the container entrypoint tojava --class-path @/app/jib-classpath-file @/app/jib-main-class-filewill work to start the app. (This is basically the default entrypoint set by Jib when the entrypoint is not explicitly configured by the user.) The files are always generated whether Java 8 or 9+, or whetherjib.container.entrypointis explicitly configured. The files can be helpful especially when setting a custom entrypoint for a shell script that needs to get the classpath and the main class computed by Jib, or for AppCDS. (#3280) - For Java 9+ apps, the default Java runtime classpath explicitly lists all the app dependencies, preserving the dependency loading order declared by Gradle. This is done by changing the default entrypoint to use the new classpath JVM argument file (basically
java -cp @/app/jib-classpath-file). As such,jib.container.expandClasspathDependenciestakes no effect for Java 9+. (#3280) - Timestamps of file entries in a tarball built with
jibBuildTarare set to the epoch, making the tarball reproducible. (#3158)
- New
includesandexcludesoptions forjib.extraDirectories. This enables copying a subset of files from the source directory using glob patterns. (#2564) - Added an option
configurationNameto specify the name of the Gradle Configuration to use. The option can be lazily configured, for example, using GradleProviderorProperty. (#3034)
jib {
configurationName = 'myconfig'
}- Switched the default base images from Distroless to
adoptopenjdk:{8,11}-jreandjetty(for WAR). (#3124)
- Fixed an issue where some log messages used color in the "plain" console output. (#2764)
- Added support for configuring registry mirrors for base images. This is useful when hitting Docker Hub rate limits. Only public mirrors (such as
mirror.gcr.io) are supported. (#3011)
- Build will fail if Jib cannot create or read the global Jib configuration file. (#2996)
- Updated jackson dependency version causing compatibility issues. (#2931)
- Deprecated use of
@Optionalon boolean attribute (#2930)
- Added an option
jib.container.expandClasspathDependenciesto preserve the order of loading dependencies as configured in a project. The option enumerates dependency JARs instead of using a wildcard (/app/libs/*) in the Java runtime classpath for an image entrypoint. (#1871, #1907, #2228, #2733)- The option is also useful for AppCDS. (#2471)
- Turning on the option may result in a very long classpath string, and the OS may not support passing such a long string to JVM.
- Added lazy evaluation for
jib.(to|from).auth.(username|password)andjib.from.imageusing Gradle Property and Provider. (#2905)
- Fixed
NullPointerExceptionwhen pulling an OCI base image whose manifest does not havemediaTypeinformation. (#2819) - Fixed build failure when using a Docker daemon base image (
docker://...) that has duplicate layers. (#2829)
- Added lazy evaluation for
jib.to.imageandjib.to.tagsusing Gradle Property and Provider. (#2727) - Incubating feature: can now configure multiple platforms (such as architectures) to build multiple images as a bundle and push as a manifest list (also known as a fat manifest). As an incubating feature, there are certain limitations. For example, OCI image indices are not supported, and building a manifest list is supported only for registry pushing (the
jibtask). (#2523)jib.from { image = '... image reference to a manifest list ...' platforms { platform { architecture = 'arm64' os = 'linux' } } }
- Previous locally cached base image manifests will be ignored, as the caching mechanism changed to enable multi-platform image building. (#2730, #2711)
- Upgraded the ASM library to 9.0 to resolve an issue when auto-inferring main class in Java 15+. (#2776)
- Fixed
NullPointerExceptionduring input validation (in Java 9+) when configuring Jib parameters using certain immutable collections (such asList.of()). (#2702) - Fixed authentication failure with Azure Container Registry when using "tokens". (#2784)
- Improved authentication flow for base image registry. (#2134)
- Throw
IllegalArgumentExceptionwith an error message instead of throwing aNullPointerExceptionwhenjib.to.tagsis set to a collection containing anullvalue. (#2760)
- Fixed an issue that configuring
jib.from.platformswas always additive to the defaultamd64/linuxplatform. (#2783)
- Also tries
.exefile extension for credential helpers on Windows. (#2527) - New system property
jib.skipExistingImages(false by default) to skip pushing images (manifests) if the image already exists in the registry. (#2360) - Incubating feature: can now configure desired platform (architecture and OS) to select the matching manifest from a Docker manifest list. Currently supports building only one image. OCI image indices are not supported. (#1567)
jib.from { image = '... image reference to a manifest list ...' platforms { platform { architecture = 'arm64' os = 'linux' } } }
- Fixed reporting a wrong credential helper name when the helper does not exist on Windows. (#2527)
- Fixed
NullPointerExceptionwhen the"auths":section in~/.docker/config.jsonhas an entry with no"auth":field. (#2535) - Fixed
NullPointerExceptionto return a helpful message when a server does not provide any message in certain error cases (400 Bad Request, 404 Not Found, and 405 Method Not Allowed). (#2532) - Now supports sending client certificate (for example, via the
javax.net.ssl.keyStoreandjavax.net.ssl.keyStorePasswordsystem properties) and thus enabling mutual TLS authentication. (#2585, #2226) - Fixed an issue where Jib cannot infer Kotlin main class that takes no arguments. (#2666)
- Jib Extension Framework! The framework enables anyone to easily extend and tailor the Jib Gradle plugin behavior to their liking. Check out the new Jib Extensions GitHub repository to learn more. (#2401)
- Project dependencies in a multi-module WAR project are now stored in a separate "project dependencies" layer (as currently done for a non-WAR project). (#2450)
- Previous locally cached application layers (
<project root>/target/jib-cache) will be ignored because of changes to the caching selectors. (#2499)
- Fixed authentication failure with Azure Container Registry when using an identity token defined in the
authssection of Docker config (~/.docker/config.json). (#2488)
jib.extraDirectories.pathsclosure to allow configuring the source and target of an extra directory. (#1581)
- Fixed the problem not inheriting
USERcontainer configuration from a base image. (#2421) - Fixed wrong capitalization of JSON properties in a loadable Docker manifest when building a tar image. (#2430)
- Fixed an issue when using a base image whose image creation timestamp contains timezone offset. (#2428)
- Fixed an issue inferring a wrong main class or using an invalid main class (for example, Spring Boot project containing multiple main classes). (#2456)
- Glob pattern support for
jib.extraDirectories.permissions. (#1200) - Support for image references with both a tag and a digest. (#1481)
- The
DOCKER_CONFIGenvironment variable specifying the directory containing docker configs is now checked during credential retrieval. (#1618) - Also tries
.cmdfile extension for credential helpers on Windows. (#2399)
jib.container.creationTimenow accepts more timezone formats:+HHmm. This allows for easier configuration of creationTime by external systems. (#2320)
- Additionally reads credentials from
~/.docker/.dockerconfigjsonand legacy Docker config (~/.docker/.dockercfg). Also searches for$HOME/.docker/*(in addition to currentSystem.get("user.home")/.docker/*). This may help retrieve credentials, for example, on Kubernetes. (#2260) - New skaffold configuration options that modify how jib's build config is presented to skaffold (#2292):
jib.skaffold.watch.buildIncludes: a list of build files to watchjib.skaffold.watch.includes: a list of project files to watchjib.skaffold.watch.excludes: a list of files to exclude from watchingjib.skaffold.sync.excludes: a list of files to exclude from sync'ing
- Fixed authentication failure with error
server did not return 'WWW-Authenticate: Bearer' headerin certain cases (for example, on OpenShift). (#2258) - Fixed an issue where using local Docker images (by
docker://...) on Windows caused an error. (#2270) - Fixed build failures with Skaffold when the Gradle Java Platform plugin is applied. (#2269)
- For Spring Boot projects using
containerizingMode = 'packaged', Jib now overridesarchiveClassifierof thejartask only when safe and necessary. (#2278) - Fixed an issue where user-configured task dependencies for the Jib task is overwritten and thus ineffective. (#2289)
- Added json output file for image metadata after a build is complete. Writes to
build/jib-image.jsonby default, configurable withjib.outputPaths.imageJson. (#2227) - Added automatic update checks. Jib will now display a message if there is a new version of Jib available. See the privacy page for more details. (#2193)
- Removed
jibDockerBuild.dockerClientin favor ofjib.dockerClient. (#1983) - Removed deprecated
jib.extraDirectoryconfiguration in favor ofjib.extraDirectories. (#1691) - Removed deprecated
jib.container.useCurrentTimestampconfiguration in favor ofjib.container.creationTimewithUSE_CURRENT_TIMESTAMP. (#1897) - HTTP redirection URLs are no longer sanitized in order to work around an issue with certain registries that do not conform to HTTP standards. This resolves an issue with using Red Hat OpenShift and Quay registries. (#2106, #1986)
- Requires Gradle 5.1 or newer (up from 4.9).
- The default base image cache location has been changed on MacOS and Windows. (#2216)
- MacOS (
$XDG_CACHE_HOMEdefined): from$XDG_CACHE_HOME/google-cloud-tools-java/jib/to$XDG_CACHE_HOME/Google/Jib/ - MacOS (
$XDG_CACHE_HOMEnot defined): from$HOME/Library/Application Support/google-cloud-tools-java/jib/to$HOME/Library/Caches/Google/Jib/ - Windows (
$XDG_CACHE_HOMEdefined): from$XDG_CACHE_HOME\google-cloud-tools-java\jib\to$XDG_CACHE_HOME\Google\Jib\Cache\ - Windows (
$XDG_CACHE_HOMEnot defined): from%LOCALAPPDATA%\google-cloud-tools-java\jib\to%LOCALAPPDATA%\Google\Jib\Cache\ - Initial builds will be slower until the cache is repopulated, unless you manually move the cache from the old location to the new location
- MacOS (
jibBuildTarwithjib.container.format='OCI'now builds a correctly formatted OCI archive. (#2124)- Now
jib.containerizingMode='packaged'works as intended with Spring Boot projects that generate a fat JAR. (#2178) - Now automatically refreshes Docker registry authentication tokens when expired, fixing the issue that long-running builds may fail with "401 unauthorized." (#691)
- Requires Gradle 4.9 or newer (up from 4.6).
- Optimized building to a registry with local base images. (#1913)
- Fixed reporting parent build file when
skaffold initis run on multi-module projects. (#2091) - Now correctly uses the
wartask if it is enabled and thebootWartask is disabled for Spring WAR projects. (#2096) allowInsecureRegistriesand thesendCredentialsOverHttpsystem property are now effective for authentication service server connections. (#2074)- Fixed inefficient communications when interacting with insecure registries and servers (when
allowInsecureRegistriesis set). (#946)
jib.outputPathsobject for configuration output file locations (#1561)jib.outputPaths.tarconfigures output path ofjibBuildTar(build/jib-image.tarby default)jib.outputPaths.digestconfigures the output path of the image digest (build/jib-image.digestby default)jib.outputPaths.imageIdconfigures output path of the image id (build/jib-image.idby default)
- Main class inference support for Java 13/14. (#2015)
- Local base image layers are now processed in parallel, speeding up builds using large local base images. (#1913)
- The base image manifest is no longer pulled from the registry if a digest is provided and the manifest is already cached. (#1881)
- Docker daemon base images are now cached more effectively, speeding up builds using
docker://base images. (#1912)
- Fixed temporary directory cleanup during builds using local base images. (#2016)
- Fixed additional tags being ignored when building to a tarball. (#2043)
- Fixed
tar://base image failing if tar does not contain explicit directory entries. (#2067)
- Fixed an issue with using custom base images in Java 12+ projects. (#1995)
- Support for local base images by prefixing
jib.from.imagewithdocker://to build from a docker daemon image, ortar://to build from a tarball image. (#1468, #1905)
- To disable parallel execution, the property
jib.serializeshould be used instead ofjibSerialize. (#1968) - For retrieving credentials from Docker config (
~/.docker/config.json),credHelpersnow takes precedence overcredsStore, followed byauths. (#1958) - The legacy
credsStoreno longer requires defining empty registry entries inauthsto be used. This now means that ifcredsStoreis defined,authswill be completely ignored. (#1958) jib.dockerClientis now configurable on all tasks, not justjibDockerBuild. (#1932)jibDockerBuild.dockerClientis deprecated in favor ofjib.dockerClient.
- Fixed the regression of slow network operations introduced at 1.5.0. (#1980)
- Fixed an issue where connection timeout sometimes fell back to attempting plain HTTP (non-HTTPS) requests when
allowInsecureRegistriesis set. (#1949)
- Fixed an issue interacting with certain registries due to changes to URL handling in the underlying Apache HttpClient library. (#1924)
- Can now set timestamps (last modified time) of the files in the built image with
jib.container.filesModificationTime. The value should either beEPOCH_PLUS_SECONDto set the timestamps to Epoch + 1 second (default behavior), or an ISO 8601 date time parsable withDateTimeFormatter.ISO_DATE_TIMEsuch as2019-07-15T10:15:30+09:00or2011-12-03T22:42:05Z. (#1818) - Can now set container creation timestamp with
jib.container.creationTime. The value should beEPOCH,USE_CURRENT_TIMESTAMP, or an ISO 8601 date time. (#1609) - For Google Container Registry (gcr.io), Jib now tries Google Application Default Credentials (ADC) last when no credentials can be retrieved. ADC are available on many Google Cloud Platform (GCP) environments (such as Google Cloud Build, Google Compute Engine, Google Kubernetes Engine, and Google App Engine). Application Default Credentials can also be configured with
gcloud auth application-default loginlocally or through theGOOGLE_APPLICATION_CREDENTIALSenvironment variable. (#1902)
- When building to a registry, Jib now skips downloading and caching base image layers that already exist in the target registry. This feature will be particularly useful in CI/CD environments. However, if you want to force caching base image layers locally, set the system property
-Djib.alwaysCacheBaseImage=true. (#1840) jib.container.useCurrentTimestamphas been deprecated in favor ofjib.container.creationTimewithUSE_CURRENT_TIMESTAMP. (#1609)
- Can now containerize a JAR artifact instead of putting individual
.classand resource files withjib.containerizingMode = 'packaged'. (#1760) - Now automatically supports WAR created by the Spring Boot Gradle Plugin via the
bootWartask. (#1786) - Can now use
jib.from.image = 'scratch'to use the scratch (empty) base image for builds. (#1794)
- Dependencies are now split into three layers: dependencies, snapshots dependencies, project dependencies. (#1724)
- Re-enabled cross-repository blob mounts. (#1793)
- Manifest lists referenced directly by sha256 are automatically parsed and the first
linux/amd64manifest is used. (#1811)
- Docker credentials (
~/.docker/config.json) are now given priority over registry-based inferred credential helpers. (#1704)
- Fixed an issue with
jibBuildTarwhereUP-TO-DATEchecks were incorrect. (#1757)
- Container configurations in the base image are now propagated when registry uses the old V2 image manifest, schema version 1 (such as Quay). (#1641)
- Can now prepend paths in the container to the computed classpath with
jib.container.extraClasspath. (#1642) - Can now build in offline mode using
--offline. (#718) - Now supports multiple extra directories with
jib.extraDirectories.{paths|.permissions}. (#1020)
jib.extraDirectory({.path|.permissions})are deprecated in favor of the newjib.extraDirectories.{paths|.permissions}configurations. (#1671)
- Labels in the base image are now propagated. (#1643)
- Fixed an issue with using OCI base images. (#1683)
- Fixed an issue where automatically generated parent directories in a layer did not get their timestamp configured correctly to epoch + 1s. (#1648)
- Fixed an issue where the plugin creates wrong images by adding base image layers in reverse order when registry uses the old V2 image manifest, schema version 1 (such as Quay). (#1627)
osandarchitectureare taken from base image. (#1564)
- Fixed an issue where pushing to Docker Hub fails when the host part of an image reference is
docker.io. (#1549)
- Java 9+ WAR projects are now supported and run on the distroless Jetty Java 11 image (https://github.com/GoogleContainerTools/distroless) by default. Java 8 projects remain on the distroless Jetty Java 8 image. (#1510)
- Now supports authentication against Azure Container Registry using
docker-credential-acr-*credential helpers. (#1490)
- Fixed an issue where setting
allowInsecureRegistriesmay fail to try HTTP. (#1517) - Crash on talking to servers that do not set the
Content-LengthHTTP header or send an incorrect value. (#1512)
- Java 9+ projects are now supported and run on the distroless Java 11 image (https://github.com/GoogleContainerTools/distroless) by default. Java 8 projects remain on the distroless Java 8 image. (#1279)
- Failure to infer main class when main method is defined using varargs (i.e.
public static void main(String... args)). (#1456)
- Shortened progress bar display - make sure console window is at least 50 characters wide or progress bar display can be messy. (#1361)
- Setting proxy credentials (via system properties
http(s).proxyUserandhttp(s).proxyPassword) is now supported.
- Java 9+ projects using the default distroless Java 8 base image will now fail to build. (#1143)
jib.baseImageCacheandjib.applicationCachesystem properties for setting cache directories. (#1238)- Build progress shown via a progress bar - set
-Djib.console=plainto show progress as log messages. (#1297)
- Removed
jib.useOnlyProjectCacheparameter in favor of thejib.useOnlyProjectCachesystem property. (#1308)
- Builds failing due to dependency JARs with the same name. (#810)
- Image ID is now written to
build/jib-image.id. (#1204) jib.container.entrypoint = 'INHERIT'allows inheritingENTRYPOINTandCMDfrom the base image. While inheritingENTRYPOINT, you can also overrideCMDusingjib.container.args.container.workingDirectoryconfiguration parameter to set the working directory. (#1225)- Adds support for configuring volumes. (#1121)
- Exposed ports are now propagated from the base image. (#595)
- Docker health check is now propagated from the base image. (#595)
- Removed
jibExportDockerContexttask. (#1219)
- NullPointerException thrown with incomplete
authconfiguration. (#1177)
- Properties for each configuration parameter, allowing any parameter to be set via commandline. (#1083)
jib.to.credHelperandjib.from.credHelpercan be used to specify a credential helper suffix or a full path to a credential helper executable. (#925)container.userconfiguration parameter to configure the user and group to run the container as. (#1029)- Preliminary support for building images for WAR projects. (#431)
jib.extraDirectoryclosure with apathandpermissionsfield. (#794)jib.extraDirectory.pathconfigures the extra layer directory (still also configurable viajib.extraDirectory = file(...))jib.extraDirectory.permissionsis a map from absolute path on container to the file's permission bits (represented as an octal string).
- Image digest is now written to
build/jib-image.digest. (#933) - Adds the layer type to the layer history as comments. (#1198)
jibDockerBuild.dockerClient.executableandjibDockerBuild.dockerClient.environmentto set Docker client binary path (defaulting todocker) and additional environment variables to apply when running the binary. (#1214)
- Removed deprecated
jib.jvmFlags,jib.mainClass,jib.args, andjib.formatin favor of the equivalents underjib.container. (#461) jibExportDockerContextgenerates different directory layout andDockerfileto enable WAR support. (#1007)- File timestamps in the built image are set to 1 second since the epoch (hence 1970-01-01T00:00:01Z) to resolve compatibility with applications on Java 6 or below where the epoch means nonexistent or I/O errors; previously they were set to the epoch. (#1079)
- Sets tag to "latest" instead of "unspecified" if
jib.to.imageand project version are both unspecified when runningjibDockerBuildorjibBuildTar. (#1096)
- Adds environment variable configuration to Docker context generator. (#890 (comment))
Cannot access 'image': it is public in <anonymous>error. (#1060)
container.environmentconfiguration parameter to configure environment variables. (#890)container.appRootconfiguration parameter to configure app root in the image. (#984)jib.to.tags(list) defines additional tags to push to. (#978)
- Keep duplicate layers to match container history. (#1017)
container.labelsconfiguration parameter for configuring labels. (#751)container.entrypointconfiguration parameter to set the entrypoint. (#579)historyto layer metadata. (#875)- Propagates working directory from the base image. (#902)
- Corrects permissions for directories in the container filesystem. (#772)
- Passthrough labels from base image. (#750)
- Reordered classpath in entrypoint to use resources, classes, and then dependencies, to allow dependency patching.
. (#777). Note that this classpath ordering differs from that used by Gradle's
runtask. - Changed logging level of missing build output directory message. (#677)
- Gradle project dependencies have their
assembletask run before running a jib task. (#815)
- Docker context generation now includes snapshot dependencies and extra files. (#516)
- Disable parallel operation by setting the
jibSerializesystem property totrue. (#682)
- Propagates environment variables from the base image. (#716)
allowInsecureRegistriesallows connecting to insecure HTTPS registries (for example, registries using self-signed certificates). (#733)
- Slow image reference parsing. (#680)
- Building empty layers. (#516)
- Duplicate layer entries causing unbounded cache growth. (#721)
- Incorrect authentication error message when target and base registry are the same. (#758)
- Snapshot dependencies are added as their own layer. (#584)
jibBuildTartask to build an image tarball atbuild/jib-image.tar, which can be loaded into docker usingdocker load. (#514)container.useCurrentTimestampparameter to set the image creation time to the build time. (#413)- Authentication over HTTP using the
sendCredentialsOverHttpsystem property. (#599) - HTTP connection and read timeouts for registry interactions configurable with the
jib.httpTimeoutsystem property. (#656) - Docker context export command-line option
--targetDirto--jibTargetDir. (#662)
- Docker context export command-line option
--targetDirto--jibTargetDir. (#662)
- Using multi-byte characters in container configuration. (#626)
- For Docker Hub, also tries registry aliases when getting a credential from the Docker config. (#605)
- Using a private registry that does token authentication with
allowInsecureRegistriesset totrue. (#572)
- Incubating feature to build
src/main/jibas extra layer in image. (#562)
- Fixed handling case-insensitive
Basicauthentication method. (#546) - Fixed regression that broke pulling base images from registries that required token authentication. (#549)
- Using Docker config for finding registry credentials (was not ignoring extra fields and handling
httpsprotocol). (#524)
- Can configure
jibExportDockerContextoutput directory withjibExportDockerContext.targetDir. (#492)
- Set
jibExportDockerContextoutput directory with command line option--targetDir. (#499)
container.portsparameter to define container's exposed ports (similar to DockerfileEXPOSE). (#383)- Can set
allowInsecureRegistriesparameter totrueto use registries that only support HTTP. (#388)
- Fetches credentials from inferred credential helper before Docker config. (#401)
- Container creation date set to timestamp 0. (#341)
- Does not authenticate base image pull unless necessary - reduces build time by about 500ms. (#414)
jvmFlags,mainClass,args, andformatare now grouped undercontainerconfiguration object. (#384)- Warns instead of errors when classes not found. (#462)
- Using Azure Container Registry now works - define credentials in
jib.to.auth/jib.from.auth. (#415) - Supports
access_tokenas alias totokenin registry authentication. (#420) - Docker context export for Groovy project. (#459)
- Visibility of
jib.to.image. (#460)
- Export a Docker context (including a Dockerfile) with
jibExportDockerContext. (#204) - Warns if build may not be reproducible. (#245)
jibDockerBuildgradle task to build straight to Docker daemon. (#265)mainClassis inferred by searching through class files if configuration is missing. (#278)- All tasks depend on
classesby default. (#335) - Can now specify target image with
--image. (#328) argsparameter to define default main arguments. (#346)
- Removed
reproducibleparameter - application layers will always be reproducible. (#245)
- Using base images that lack entrypoints. (#284)