From 4b8cb62817802d8819cf84a183429d83d3aae631 Mon Sep 17 00:00:00 2001 From: Ninosaurier Date: Sun, 2 Aug 2026 17:05:03 +0200 Subject: [PATCH] fix(ci-runner): add Dockerfile for node22 CI runner image Base image for the gitea-act-runner build environment, includes Docker CLI and docker-compose for CI jobs that need to build/push containers, plus corepack for yarn/pnpm support." --- .gitea/runners/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/runners/Dockerfile b/.gitea/runners/Dockerfile index 59f62bf..b95a8aa 100644 --- a/.gitea/runners/Dockerfile +++ b/.gitea/runners/Dockerfile @@ -1,7 +1,9 @@ FROM node:22-bullseye RUN apt-get update \ - && apt-get install -y docker.io docker-compose-plugin \ + && apt-get install -y docker.io \ && rm -rf /var/lib/apt/lists/* -RUN corepack enable \ No newline at end of file +RUN corepack enable + +RUN npm install -g docker-compose \ No newline at end of file