Interface CommonConfig
public interface CommonConfig
-
Method Summary
Modifier and TypeMethodDescriptionAdditional arbitrary arguments passed to the executable when building the container image.Build args passed to docker via--build-argImages to consider as cache sources.Path to the JVM Dockerfile.Path to the native Dockerfile.Name of binary used to execute the docker/podman commands.network()The networking mode for the RUN instructions during build
-
Method Details
-
dockerfileJvmPath
Path to the JVM Dockerfile. If set to an absolute path then the absolute path will be used, otherwise the path will be considered relative to the project root. If not set src/main/docker/Dockerfile.jvm will be used. -
dockerfileNativePath
Path to the native Dockerfile. If set to an absolute path then the absolute path will be used, otherwise the path will be considered relative to the project root. If not set src/main/docker/Dockerfile.native will be used. -
buildArgs
Build args passed to docker via--build-arg -
cacheFrom
Images to consider as cache sources. Values are passed todocker build/podman buildvia thecache-fromoption -
network
The networking mode for the RUN instructions during build -
executableName
Name of binary used to execute the docker/podman commands. This setting can override the global container runtime detection. -
additionalArgs
Additional arbitrary arguments passed to the executable when building the container image.
-