chore: bakefile support for docker build#105
Merged
Conversation
In order to build multiple targets again, like we did in PAPI before this was reverted, and for Onyx where we have two containers that are currently being build in duplicated pipelines.
Contributor
There was a problem hiding this comment.
Pull request overview
Adds Docker Buildx Bake support to the reusable CI image build workflow and wires that capability through the reusable Kubernetes deployment workflow, enabling consumers to build/push images via a bake file instead of docker/build-push-action.
Changes:
- Introduce a new
bakeFileworkflow input and updateimageTargetsdescription to support Bake targets. - Add a new
build-ecr-bakejob that builds/pushes images viadocker buildx bake. - Forward the new
bakeFileinput fromkubernetes.yamlinto the image build reusable workflow.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| .github/workflows/kubernetes.yaml | Adds bakeFile input and forwards it into the reusable image build workflow call. |
| .github/workflows/build-image.yaml | Adds bakeFile input, tightens existing job conditions, and adds a new Bake-based ECR build job. |
6166fdc to
c471b1e
Compare
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
andibeuge
reviewed
Apr 28, 2026
andibeuge
approved these changes
Apr 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds bakefile support like we had in PAPI to the CI flows.