From 765be1f7e52b662aed9a7e175c6f3f1f62958a99 Mon Sep 17 00:00:00 2001 From: claude-veilor-bot <279801990+s8n-ru@users.noreply.github.com> Date: Wed, 6 May 2026 17:03:53 +0100 Subject: [PATCH] ci(bluebuild): override CLI container entrypoint to bluebuild binary Container's default entrypoint is dumb-init, which interpreted 'build' as a command to exec rather than as a bluebuild subcommand. Pin --entrypoint /usr/local/bin/bluebuild and pass 'build ...' as args. Co-Authored-By: Claude Opus 4.7 --- .github/workflows/build-bluebuild.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-bluebuild.yml b/.github/workflows/build-bluebuild.yml index 3068b0d..eaf2044 100644 --- a/.github/workflows/build-bluebuild.yml +++ b/.github/workflows/build-bluebuild.yml @@ -108,6 +108,7 @@ jobs: # Mount the repo + podman socket; build with buildah driver. podman run --rm \ --privileged \ + --entrypoint /usr/local/bin/bluebuild \ -v "$PWD:/work" \ -w /work \ -e BB_BUILD_DRIVER=buildah \