potiuk commented on code in PR #38442:
URL: https://github.com/apache/airflow/pull/38442#discussion_r1536949904
##########
dev/breeze/src/airflow_breeze/utils/docker_command_utils.py:
##########
@@ -381,12 +381,15 @@ def prepare_base_build_command(image_params:
CommonBuildParams) -> list[str]:
]
)
if not image_params.docker_host:
+ builder = get_and_use_docker_context(image_params.builder)
build_command_param.extend(
[
"--builder",
- get_and_use_docker_context(image_params.builder),
+ builder,
]
)
+ if builder != "default":
Review Comment:
When we are using builder different than default we use `--load` flag to
load the built image to local docker engine.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]