ci: add custom runner images with Node.js pre-installed

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