Name | Type | Description | Notes |
---|---|---|---|
_from | V1ObjectReference | From is reference to an DockerImage, ImageStreamTag, or ImageStreamImage from which the docker image should be pulled the resulting image will be used in the FROM line of the Dockerfile for this build. | [optional] |
pull_secret | V1LocalObjectReference | PullSecret is the name of a Secret that would be used for setting up the authentication for pulling the Docker images from the private Docker registries | [optional] |
no_cache | bool | NoCache if set to true indicates that the docker build must be executed with the --no-cache=true flag | [optional] |
env | list[V1EnvVar] | Env contains additional environment variables you want to pass into a builder container | [optional] |
force_pull | bool | ForcePull describes if the builder should pull the images from registry prior to building. | [optional] |
dockerfile_path | str | DockerfilePath is the path of the Dockerfile that will be used to build the Docker image, relative to the root of the context (contextDir). | [optional] |