Problem Description:
Our project has just been upgraded from Spring Boot 2.x to Spring Boot 3.2.x, and from JDK 8 to GraalVM 21. However, we have encountered some issues. Previously, we used Google Jib to build and upload images to the image repository. Now, while using the GraalVM Native Image plugin, we face the following problems:
It is necessary to download Docker tools to generate Docker images. Images can only be manually uploaded to the remote repository. Is it possible to optimize the above two points?
Comment From: bclozel
Have you seen the image publishing section in the reference documentation ?
Comment From: ChildrenGreens
Have you seen the image publishing section in the reference documentation ?
Sorry, I didn't notice it before. Thank you for providing it. I took a look, and it seems to meet my current needs. Thank you very much.