Skip to content

Commit 6468b14

Browse files
authored
Merge pull request #328 from summittech-ca/summit/feature/add-docker-buildkit-support
2 parents b172693 + 5efe4c4 commit 6468b14

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,9 @@ version is the image's digest.
214214
* `dockerfile`: *Optional.* The path of the `Dockerfile` in the directory if
215215
it's not at the root of the directory.
216216

217+
* `docker_buildkit`: *Optional.* This enables a Docker BuildKit build. The value
218+
should be set to 1 if applicable.
219+
217220
* `import_file`: *Optional.* A path to a file to `docker import` and then push.
218221

219222
* `labels`: *Optional.* A map of labels that will be added to the image.

assets/out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ max_concurrent_uploads=$(jq -r '.source.max_concurrent_uploads // 3' < $payload)
3838
export AWS_ACCESS_KEY_ID=$(jq -r '.source.aws_access_key_id // ""' < $payload)
3939
export AWS_SECRET_ACCESS_KEY=$(jq -r '.source.aws_secret_access_key // ""' < $payload)
4040
export AWS_SESSION_TOKEN=$(jq -r '.source.aws_session_token // ""' < $payload)
41+
export DOCKER_BUILDKIT=$(jq -r '.source.docker_buildkit // 0' < $payload)
4142

4243
if private_registry "${repository}" ; then
4344
registry="$(extract_registry "${repository}")"

0 commit comments

Comments
 (0)