File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ repository:
55 description : Simple docker build action
66 homepage : https://cloudposse.com/accelerate
77 topics : " "
8+
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ inputs:
1111 network :
1212 description : " Set the networking mode for the RUN instructions during build"
1313 required : false
14+ build-contexts :
15+ description : " List of additional build contexts (e.g., name=path)"
16+ required : false
1417 buildkitd-flags :
1518 description : ' BuildKit daemon flags'
1619 default : ' --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host'
@@ -183,6 +186,7 @@ runs:
183186 endpoint : buildx-context
184187 buildkitd-flags : " ${{ inputs.debug == 'true' && '--debug' || '' }} ${{ inputs.buildkitd-flags }}"
185188 driver-opts : ${{ inputs.driver-opts }}
189+
186190 - name : Login
187191 uses : docker/login-action@v3
188192 if : ${{ contains(inputs.registry, '.amazonaws.com') || ( inputs.login != '' && inputs.password != '' ) }}
@@ -203,6 +207,7 @@ runs:
203207 push : true
204208 ssh : ${{ inputs.ssh }}
205209 build-args : ${{ inputs.build-args }}
210+ build-contexts : ${{ inputs.build-contexts }}
206211 cache-from : ${{ inputs.cache-from }}
207212 cache-to : ${{ inputs.cache-to }}
208213 no-cache : ${{ inputs.no-cache }}
You can’t perform that action at this time.
0 commit comments