Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.

Commit 38f12b0

Browse files
authored
Fix bin/build-image.sh on Linux (#1131)
Without the `DOCKER_BUILDKIT` environment variable the image fails to build on Linux (note: this doesn't affect CI because CI doesn't use this helper script).
1 parent 44cd2cf commit 38f12b0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

bin/build-image.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ QUESMA_BUILD_SHA=$(git rev-parse HEAD)
77
QUESMA_BUILD_DATE=$(git --no-pager log -1 --date=format:'%Y-%m-%d' --format="%ad")
88
QUESMA_VERSION="development"
99

10+
export DOCKER_BUILDKIT=1
11+
1012
docker build --build-arg QUESMA_BUILD_DATE="$QUESMA_BUILD_DATE" --build-arg QUESMA_VERSION="$QUESMA_VERSION" --build-arg QUESMA_BUILD_SHA="$QUESMA_BUILD_SHA" -f quesma/Dockerfile -t quesma/quesma:nightly quesma

0 commit comments

Comments
 (0)