Deployment Manual / Version 2207
Table Of Contents<properties> <jib.goal>dockerBuild</jib.goal> <application.image-base>gcr.io/distroless/java@11</application.image-base> <application.image-prefix>coremedia</application.image-prefix> <application.image-suffix>my-app</application.image-suffix> <application.image-tag>${project.version}</application.image-tag> </properties>
The goal to build. Choose between either | |
The base image, here a Google distroless image. For deterministic build, the sha256 digest should be used. If you want to retrieve the base image from your local Docker daemon, you need to
prefix the image source with | |
The image prefix. You should set your registry here. | |
The image suffix, that is the application name. | |
The tag of the image. |