Added own gitearunner for node action.

This commit is contained in:
Johannes Janssen 2025-04-03 22:06:51 +02:00
parent 3dc75a0d00
commit 27cfab6586
2 changed files with 8 additions and 1 deletions

View File

@ -40,7 +40,7 @@ services:
memory: 384M # Reduced from 512M (requires Gitea optimizations)
gitea-runner:
image: gitea/act_runner:latest
image: registry.jaub.cloud/gitearunner
container_name: gitea-runner
restart: always
depends_on:

View File

@ -0,0 +1,7 @@
FROM docker.io/gitea/act_runner:latest
# Install Node.js via apt
RUN apk add --no-cache nodejs npm
# Verify installation
RUN node --version && npm --version