13 lines
350 B
Docker
13 lines
350 B
Docker
FROM golang:1.26-bookworm
|
|
|
|
# Add Node.js precheck script
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
nodejs npm \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Verify installations
|
|
RUN node --version && npm --version && go version
|
|
|
|
LABEL maintainer="homelab" \
|
|
description="Golang 1.26 + Node.js pre-installed with precheck"
|