Files
homelab/k8s/infra/forgejo-runner-images/Dockerfile.rust
T

13 lines
392 B
Docker
Raw Normal View History

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