From d9b555ec174908239c459de349cc22925758400f Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Mon, 29 Jun 2026 22:36:53 +0200 Subject: [PATCH] workflow update; node and docker deps added --- .gitea/workflows/ci-image.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/ci-image.yml b/.gitea/workflows/ci-image.yml index cf2f52c..cded8b0 100644 --- a/.gitea/workflows/ci-image.yml +++ b/.gitea/workflows/ci-image.yml @@ -8,6 +8,8 @@ on: jobs: build: runs-on: alpine + container: + image: node:26-alpine env: IMAGE: git.aramjonghu.nl/aramjonghu/zshell-ci:latest @@ -15,6 +17,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Install Docker CLI + run: apk add --no-cache docker-cli + - name: Build image run: docker build -t "$IMAGE" -f ci/Dockerfile .