From e66132a184864176c912bd2543bfaac0702064c1 Mon Sep 17 00:00:00 2001 From: Scott Hatlen Date: Mon, 9 Mar 2026 19:32:45 -0700 Subject: [PATCH] Use buildah --isolation chroot for container builds --- .gitea/workflows/deploy.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index d29c20f..8532723 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -19,14 +19,14 @@ jobs: - name: Build image run: | IMAGE=harbor.scottyah.com/scottyah/blog - buildah bud -t $IMAGE:${{ github.sha }} -t $IMAGE:latest . + buildah --isolation chroot bud -t $IMAGE:${{ github.sha }} -t $IMAGE:latest . - name: Push image run: | IMAGE=harbor.scottyah.com/scottyah/blog buildah login -u "${{ secrets.HARBOR_USERNAME }}" -p "${{ secrets.HARBOR_PASSWORD }}" harbor.scottyah.com - buildah push $IMAGE:${{ github.sha }} - buildah push $IMAGE:latest + buildah --isolation chroot push $IMAGE:${{ github.sha }} + buildah --isolation chroot push $IMAGE:latest - name: Deploy run: |