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,12 +1,12 @@
|
||||
FROM rust:1-bookworm
|
||||
|
||||
# Add Node.js
|
||||
# Add Node.js 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 rustc --version && cargo --version && node --version && npm --version
|
||||
RUN rustc --version && cargo --version && node --version && npm --version && docker --version
|
||||
|
||||
LABEL maintainer="homelab" \
|
||||
description="Rust 1 + Node.js pre-installed"
|
||||
description="Rust 1 + Node.js + Docker CLI pre-installed"
|
||||
|
||||
Reference in New Issue
Block a user