0

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

Is it possible?

IsaacLevon
  • 2,260
  • 4
  • 41
  • 83

1 Answers1

2

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.

Blokje5
  • 4,763
  • 1
  • 20
  • 37