From 609c12da30c4d9547a399991157fec84957712bc Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Tue, 9 Dec 2025 14:49:41 +0100 Subject: [PATCH] fix(ci): unset BUILDKITD_HOST in the build stage Unset the BUILDKITD_HOST variable in the build stage to ensure consistent build environments and prevent potential build issues. This change improves the CI/CD process reliability. --- .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