ci: add custom runner images with Node.js pre-installed
Build Runner Images / Build and Push Runner Images (push) Failing after 58s

This commit is contained in:
2026-09-07 09:08:10 -07:00
parent f521763292
commit 32ef4eae0e
7 changed files with 120 additions and 3 deletions
@@ -0,0 +1,12 @@
FROM golang:1.26-bookworm
# Add Node.js precheck script
RUN apt-get update && apt-get install -y --no-install-recommends \
nodejs npm \
&& rm -rf /var/lib/apt/lists/*
# Verify installations
RUN node --version && npm --version && go version
LABEL maintainer="homelab" \
description="Golang 1.26 + Node.js pre-installed with precheck"