From a05b18d9fefc35a57f94b48695230f6af9c62e5e Mon Sep 17 00:00:00 2001 From: Varac <varac@varac.net> Date: Wed, 25 Oct 2023 22:12:15 +0200 Subject: [PATCH] isolation=chroot --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a5ae892..6cd310c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,6 +20,7 @@ build: - export version=$(grep 'FROM' Dockerfile|cut -d':' -f2) - echo "Building image tag $version" - buildah images - - buildah build -t ${FQ_IMAGE_NAME}:${version} + # See https://github.com/containers/buildah/issues/1901#issuecomment-638119049 + - buildah build --isolation=chroot -t ${FQ_IMAGE_NAME}:${version} - buildah images - buildah push ${FQ_IMAGE_NAME}:${version} -- GitLab