8000 ref: default to public ECR for binfmt and buildx by dudymas · Pull Request #72 · cloudposse/github-action-docker-build-push · GitHub
[go: up one dir, main page]

Skip to content

ref: default to public ECR for binfmt and buildx #72

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ inputs:
driver-opts:
description: 'List of additional driver-specific options. (eg. image=moby/buildkit:master)'
required: false
default: image=public.ecr.aws/vend/moby/buildkit:buildx-stable-1
binfmt-image:
description: 'Binfmt image'
required: false
default: public.ecr.aws/eks-distro-build-tooling/binfmt-misc:qemu-v7.0.0
workdir:
description: 'Working directory'
required: false
Expand Down Expand Up @@ -179,13 +184,15 @@ runs:

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
image: ${{ inputs.binfmt-image }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
endpoint: buildx-context
buildkitd-flags: "${{ inputs.debug == 'true' && '--debug' || '' }} ${{ inputs.buildkitd-flags }}"
driver-opts: ${{ inputs.driver-opts }}
driver-opts: "${{ inputs.driver-opts }}"

- name: Login
uses: docker/login-action@v3
Expand Down
Loading
0