From 829b063e1e4039e092de417ed58aacbea9bd8656 Mon Sep 17 00:00:00 2001 From: Elia el Lazkani Date: Mon, 1 Apr 2024 23:29:52 +0200 Subject: [PATCH] chore(): Migrates to using a dind container --- .forgejo/workflows/build-container.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/build-container.yml b/.forgejo/workflows/build-container.yml index 6c423bc..6974045 100644 --- a/.forgejo/workflows/build-container.yml +++ b/.forgejo/workflows/build-container.yml @@ -9,9 +9,15 @@ jobs: docker: runs-on: pi container: - image: scm.project42.io/elia/docker-actions-container:latest + image: cruizba/ubuntu-dind:noble-26.0.0 options: --sysctl net.ipv6.conf.all.disable_ipv6=0 --privileged steps: + - name: Install dependencies + id: dependencies + run: | + apt-get update > /dev/null + apt-get install -y -qq nodejs git > /dev/null + - name: Checkout uses: actions/checkout@v4