Skip to content

Commit 0980b31

Browse files
authored
Merge pull request #201 from macbre/use-buildkit
Try to use Docker's BuildKit
2 parents eda1054 + 7c4e16a commit 0980b31

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/dockerimage.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99

10-
build:
10+
docker_build:
1111
runs-on: ubuntu-latest
1212

1313
steps:
@@ -17,6 +17,10 @@ jobs:
1717
env:
1818
# @see https://testdriven.io/blog/faster-ci-builds-with-docker-cache/
1919
CACHE_IMAGE: macbre/index-digest:latest
20+
21+
# @see https://docs.docker.com/develop/develop-images/build_enhancements/
22+
COMPOSE_DOCKER_CLI_BUILD: "1"
23+
DOCKER_BUILDKIT: "1"
2024
run: |
2125
docker pull $CACHE_IMAGE
2226
docker build . \

0 commit comments

Comments
 (0)