From b4d238849c7269cfd585fee020f27bdb1a967b4d Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Tue, 9 Dec 2025 15:12:42 +0100 Subject: [PATCH] fix(ci): unset BUILDKIT_HOST in build stage script The build stage script now unsets the BUILDKIT_HOST environment variable to ensure a clean build process. This prevents potential conflicts related to Docker BuildKit during the build. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4fc1d4b..3a5fa4d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,5 +14,6 @@ build: stage: build script: - unset BUILDTOOLS_CONTENT + - unset BUILDKIT_HOST - build - push