nano-go/Dockerfile
Ondrej Vlach 3f32ab136b
All checks were successful
release / deploy (push) Successful in 2m32s
golang 1.25.4
2025-11-17 18:27:10 +01:00

14 lines
310 B
Docker

FROM golang:1.25.4
# Install git and nodejs
RUN apt-get update && apt-get install -y \
git \
curl \
&& curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get install -y nodejs \
&& apt-get clean
# Verify installations
RUN git --version && node --version && npm --version