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 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 \ RUN apt-get update && apt-get install -y --no-install-recommends \
nodejs npm \ nodejs npm docker.io \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Verify installations # Verify installations
RUN node --version && npm --version && go version RUN go version && node --version && npm --version && docker --version
LABEL maintainer="homelab" \ LABEL maintainer="homelab" \
description="Golang 1.26 + Node.js pre-installed with precheck" description="Golang 1.26 + Node.js + Docker CLI pre-installed"
@@ -1,11 +1,12 @@
FROM node:22-bookworm FROM node:22-bookworm
# Node.js already installed, ensure npm is up to date # Node.js already installed, add Docker CLI
RUN apt-get update && apt-get upgrade -y \ RUN apt-get update && apt-get install -y --no-install-recommends \
docker.io \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Verify installations # Verify installations
RUN node --version && npm --version RUN node --version && npm --version && docker --version
LABEL maintainer="homelab" \ LABEL maintainer="homelab" \
description="Node.js 22 with latest npm" description="Node.js 22 + Docker CLI pre-installed"
@@ -1,12 +1,12 @@
FROM rust:1-bookworm FROM rust:1-bookworm
# Add Node.js # Add Node.js and Docker CLI
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
nodejs npm \ nodejs npm docker.io \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Verify installations # Verify installations
RUN rustc --version && cargo --version && node --version && npm --version RUN rustc --version && cargo --version && node --version && npm --version && docker --version
LABEL maintainer="homelab" \ LABEL maintainer="homelab" \
description="Rust 1 + Node.js pre-installed" description="Rust 1 + Node.js + Docker CLI pre-installed"