Skip to content

Commit

Permalink
Allow overriding DOCKER_BUILDKIT env var
Browse files Browse the repository at this point in the history
  • Loading branch information
whoan committed Oct 19, 2023
1 parent 3c6917f commit 5bc33a8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion docker-build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

export DOCKER_BUILDKIT=0
set -e
export DOCKER_BUILDKIT=${DOCKER_BUILDKIT:-0}

# helper functions
_has_value() {
Expand Down
1 change: 0 additions & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env bash

export DOCKER_BUILDKIT=0
set -e

_build_image() {
Expand Down

0 comments on commit 5bc33a8

Please sign in to comment.