File tree 2 files changed +4
-0
lines changed 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -214,6 +214,9 @@ version is the image's digest.
214
214
* `dockerfile`: *Optional.* The path of the `Dockerfile` in the directory if
215
215
it's not at the root of the directory.
216
216
217
+ * `docker_buildkit`: *Optional.* This enables a Docker BuildKit build. The value
218
+ should be set to 1 if applicable.
219
+
217
220
* `import_file`: *Optional.* A path to a file to `docker import` and then push.
218
221
219
222
* `labels`: *Optional.* A map of labels that will be added to the image.
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ max_concurrent_uploads=$(jq -r '.source.max_concurrent_uploads // 3' < $payload)
38
38
export AWS_ACCESS_KEY_ID=$( jq -r ' .source.aws_access_key_id // ""' < $payload )
39
39
export AWS_SECRET_ACCESS_KEY=$( jq -r ' .source.aws_secret_access_key // ""' < $payload )
40
40
export AWS_SESSION_TOKEN=$( jq -r ' .source.aws_session_token // ""' < $payload )
41
+ export DOCKER_BUILDKIT=$( jq -r ' .source.docker_buildkit // 0' < $payload )
41
42
42
43
if private_registry " ${repository} " ; then
43
44
registry=" $( extract_registry " ${repository} " ) "
You can’t perform that action at this time.
0 commit comments