You can set the hibernate.temp.use_jdbc_metadata_defaults config to false to disable the JDBC metadata retrieval, but that has some other negative impacts so I would suggest you to avoid that, unless you want to configure a bunch of things that are normally extracted. Also see https://docs.jboss.org/hibernate/orm/6.2/userguide/html_single/Hibernate_User_Guide.html#configurations-internal The question is, why do you need to start your application during docker build? Can’t you just build your docker image without starting the app? |