Skip to content

Commit ff432a5

Browse files
committed
Remove superfluous DOCKER_BUILDKIT reference
1 parent 7c9896d commit ff432a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/debian.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Build the Docker image
4040
working-directory: docker/debian
4141
run: |
42-
DOCKER_BUILDKIT=1 docker build . \
42+
docker build . \
4343
--target gcc \
4444
--build-arg GITHUB_REPO=${GITHUB_REPOSITORY} \
4545
--build-arg DEBIAN_VERSION=${{ matrix.version.os }} \

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Build the Docker image
4141
working-directory: docker/ubuntu
4242
run: |
43-
DOCKER_BUILDKIT=1 docker build . \
43+
docker build . \
4444
--target gcc \
4545
--build-arg GITHUB_REPO=${GITHUB_REPOSITORY} \
4646
--build-arg UBUNTU_VERSION=${{ matrix.version.os }} \

0 commit comments

Comments
 (0)