From 59bb20fc7fca1d95010f6365f99498b43c0099fd Mon Sep 17 00:00:00 2001 From: Kevin Dorner Date: Tue, 17 May 2022 01:28:56 +0200 Subject: [PATCH] Added chroot isolation to image --- Containerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Containerfile b/Containerfile index 15013e1..b873a6d 100644 --- a/Containerfile +++ b/Containerfile @@ -1,2 +1,6 @@ FROM docker.io/alpine:edge RUN apk add --no-cache buildah + + +# Use chroot isolation to avoid unshare call +ENV BUILDAH_ISOLATION=chroot