From 9a3e26bf9bee7341ee758ef9d54b8d94d01b0d13 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Mon, 5 Aug 2024 17:10:28 +0200 Subject: [PATCH] build_image,ci-automation: Add app-containers/docker-buildx to docker-flatcar sysext --- build_image | 2 +- ci-automation/base_sysexts.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build_image b/build_image index e916d0df1b6..fb68cf36235 100755 --- a/build_image +++ b/build_image @@ -33,7 +33,7 @@ DEFINE_string base_pkg "coreos-base/coreos" \ "The base portage package to base the build off of (only applies to prod images)" DEFINE_string base_dev_pkg "coreos-base/coreos-dev" \ "The base portage package to base the build off of (only applies to dev containers)" -DEFINE_string base_sysexts "containerd-flatcar:app-containers/containerd,docker-flatcar:app-containers/docker&app-containers/docker-cli" \ +DEFINE_string base_sysexts "containerd-flatcar:app-containers/containerd,docker-flatcar:app-containers/docker&app-containers/docker-cli&app-containers/docker-buildx" \ "Comma-separated list of name:package[&package[&package]] - build 'package' (a single package or a list of packages separated by '&') into sysext 'name', and include with OS image and update payload. Must be in order of dependencies, base sysexts come first." DEFINE_string output_root "${DEFAULT_BUILD_ROOT}/images" \ "Directory in which to place image result directories (named by version)" diff --git a/ci-automation/base_sysexts.sh b/ci-automation/base_sysexts.sh index e73af856faf..8d8c685bbe1 100644 --- a/ci-automation/base_sysexts.sh +++ b/ci-automation/base_sysexts.sh @@ -7,5 +7,5 @@ fi ciabs_base_sysexts=( 'containerd-flatcar:app-containers/containerd' - 'docker-flatcar:app-containers/docker&app-containers/docker-cli' + 'docker-flatcar:app-containers/docker&app-containers/docker-cli&app-containers/docker-buildx' )