We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eda1054 + 7c4e16a commit 0980b31Copy full SHA for 0980b31
1 file changed
.github/workflows/dockerimage.yml
@@ -7,7 +7,7 @@ on:
7
8
jobs:
9
10
- build:
+ docker_build:
11
runs-on: ubuntu-latest
12
13
steps:
@@ -17,6 +17,10 @@ jobs:
17
env:
18
# @see https://testdriven.io/blog/faster-ci-builds-with-docker-cache/
19
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"
24
run: |
25
docker pull $CACHE_IMAGE
26
docker build . \
0 commit comments