How to optimize the build process and re-use the same container image for multiple services

We have a springboot project, with a few different apps inside.

So question, how to create deployment process, where project will be compiled only once (with db migration) and after that can be started as few different services, defined in qovery UI.

Hi @am0s , I think you might be interested in using an external CI to:

  1. build your spring boot project once
  2. push it into a container registry
  3. then use this container image for your different apps.

You can find some great resources here.