fix: other reflections
All checks were successful
Build docker image / build (push) Successful in 8m42s

This commit is contained in:
Malopieds 2025-10-21 22:28:45 +02:00
parent 9678f93dc7
commit f0afdfb8cd

View File

@ -3,6 +3,9 @@ package fr.la_banquise.backend;
import io.quarkus.runtime.annotations.RegisterForReflection; import io.quarkus.runtime.annotations.RegisterForReflection;
@RegisterForReflection(targets = { @RegisterForReflection(targets = {
com.github.dockerjava.core.command.CreateContainerCmdImpl.class,
com.github.dockerjava.core.command.BuildImageCmdImpl.class,
com.github.dockerjava.api.command.CreateContainerResponse.class,
com.github.dockerjava.api.model.BuildResponseItem.class, com.github.dockerjava.api.model.BuildResponseItem.class,
com.github.dockerjava.api.model.Container.class, com.github.dockerjava.api.model.Container.class,
com.github.dockerjava.api.model.ContainerConfig.class, com.github.dockerjava.api.model.ContainerConfig.class,
@ -14,7 +17,6 @@ import io.quarkus.runtime.annotations.RegisterForReflection;
com.github.dockerjava.api.model.Volume.class, com.github.dockerjava.api.model.Volume.class,
com.github.dockerjava.api.model.Network.class, com.github.dockerjava.api.model.Network.class,
com.github.dockerjava.api.model.Frame.class com.github.dockerjava.api.model.Frame.class
// Add other model classes you're using
}) })
public class DockerJavaReflectionConfig { public class DockerJavaReflectionConfig {