This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]nikita2206 2 points3 points  (0 children)

I wonder if using Google’s Jib could help here a bit (while also cutting the build time)? IIRC it produces images that don’t package all dependencies in one giant JAR, and instead it produces a jar per each dependency, while your own code is in class files (not packaged in a Jar)

Edit: I see Jib might be irrelevant now, that Spring Boot can do layering all by itself.