ci: add docker.io to custom runner images

This commit is contained in:
2026-09-07 09:09:59 -07:00
parent 0f9f0eef2a
commit 392171a480
3 changed files with 13 additions and 12 deletions
@@ -1,11 +1,12 @@
FROM node:22-bookworm
# Node.js already installed, ensure npm is up to date
RUN apt-get update && apt-get upgrade -y \
# Node.js already installed, add Docker CLI
RUN apt-get update && apt-get install -y --no-install-recommends \
docker.io \
&& rm -rf /var/lib/apt/lists/*
# Verify installations
RUN node --version && npm --version
RUN node --version && npm --version && docker --version
LABEL maintainer="homelab" \
description="Node.js 22 with latest npm"
description="Node.js 22 + Docker CLI pre-installed"