Files
homelab/k8s/infra/forgejo-runner-images/Dockerfile.rust
T
rock 32ef4eae0e
Build Runner Images / Build and Push Runner Images (push) Failing after 58s
ci: add custom runner images with Node.js pre-installed
2026-09-07 09:08:10 -07:00

13 lines
334 B
Docker

FROM rust:1-bookworm
# Add Node.js
RUN apt-get update && apt-get install -y --no-install-recommends \
nodejs npm \
&& rm -rf /var/lib/apt/lists/*
# Verify installations
RUN rustc --version && cargo --version && node --version && npm --version
LABEL maintainer="homelab" \
description="Rust 1 + Node.js pre-installed"