IsaacLevon
IsaacLevon

Reputation: 2570

Using GoogleContainerTools/jib only to build without deploy?

I'd like to use jib but only for building an image and not deploying it to the cloud or dockerhub.

Is it possible?

Upvotes: 0

Views: 1259

Answers (1)

Blokje5
Blokje5

Reputation: 4993

Jib supports also building an image without sending it to a remote registry, e.g. with the Gradle plugin you can run:

gradle jibDockerBuild

instead of:

gradle jib

It also supports commands like gradle jibBuildTar to build the image and store it in a tar file.

Upvotes: 2

Related Questions