ci: add docker.io to custom runner images
Build Runner Images / Build and Push Runner Images (push) Failing after 1m0s
Build Runner Images / Build and Push Runner Images (push) Failing after 1m0s
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user