ci: add docker.io to custom runner images
Build Runner Images / Build and Push Runner Images (push) Failing after 1m0s

This commit is contained in:
2026-09-07 09:09:59 -07:00
parent 32ef4eae0e
commit f253731cb9
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"