From 6943169296f487cd5035e1c5dda2a4cd1992ac26 Mon Sep 17 00:00:00 2001 From: Elia el Lazkani Date: Sat, 30 Mar 2024 22:54:18 +0100 Subject: [PATCH] chore(): Install docker in the container --- .forgejo/workflows/build-container.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/build-container.yml b/.forgejo/workflows/build-container.yml index 8659c8e..73daf73 100644 --- a/.forgejo/workflows/build-container.yml +++ b/.forgejo/workflows/build-container.yml @@ -15,7 +15,9 @@ jobs: id: dependencies run: | apt-get update - apt-get install -y -qq nodejs git + apt-get install -y -qq nodejs curl git + curl -sSL https://get.docker.com/ | sh + - name: Checkout uses: actions/checkout@v4