2026-09-07 09:08:10 -07:00
|
|
|
FROM rust:1-bookworm
|
|
|
|
|
|
2026-09-07 09:09:59 -07:00
|
|
|
# Add Node.js and Docker CLI
|
2026-09-07 09:08:10 -07:00
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
2026-09-07 09:09:59 -07:00
|
|
|
nodejs npm docker.io \
|
2026-09-07 09:08:10 -07:00
|
|
|
&& 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
|
2026-09-07 09:08:10 -07:00
|
|
|
|
|
|
|
|
LABEL maintainer="homelab" \
|
2026-09-07 09:09:59 -07:00
|
|
|
description="Rust 1 + Node.js + Docker CLI pre-installed"
|