File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,11 @@ inputs:
21
21
driver-opts :
22
22
description : ' List of additional driver-specific options. (eg. image=moby/buildkit:master)'
23
23
required : false
24
+ default : image=public.ecr.aws/vend/moby/buildkit:buildx-stable-1
25
+ binfmt-image :
26
+ description : ' Binfmt image'
27
+ required : false
28
+ default : public.ecr.aws/eks-distro-build-tooling/binfmt-misc:qemu-v7.0.0
24
29
workdir :
25
30
description : ' Working directory'
26
31
required : false
@@ -179,13 +184,15 @@ runs:
179
184
180
185
- name : Set up QEMU
181
186
uses : docker/setup-qemu-action@v3
187
+ with :
188
+ image : ${{ inputs.binfmt-image }}
182
189
183
190
- name : Set up Docker Buildx
184
191
uses : docker/setup-buildx-action@v3
185
192
with :
186
193
endpoint : buildx-context
187
194
buildkitd-flags : " ${{ inputs.debug == 'true' && '--debug' || '' }} ${{ inputs.buildkitd-flags }}"
188
- driver-opts : ${{ inputs.driver-opts }}
195
+ driver-opts : " ${{ inputs.driver-opts }}"
189
196
190
197
- name : Login
191
198
uses : docker/login-action@v3
You can’t perform that action at this time.
0 commit comments