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,12 +1,12 @@
FROM golang:1.26-bookworm
# Add Node.js precheck script
# Install Node.js, npm, and Docker CLI
RUN apt-get update && apt-get install -y --no-install-recommends \
nodejs npm \
nodejs npm docker.io \
&& rm -rf /var/lib/apt/lists/*
# Verify installations
RUN node --version && npm --version && go version
RUN go version && node --version && npm --version && docker --version
LABEL maintainer="homelab" \
description="Golang 1.26 + Node.js pre-installed with precheck"
description="Golang 1.26 + Node.js + Docker CLI pre-installed"