nano-go/Dockerfile
Ondrej Vlach 931aa46b4c
All checks were successful
release / deploy (push) Successful in 1m45s
golang 1.24.2
2025-05-13 20:54:35 +02:00

14 lines
310 B
Docker

FROM golang:1.24.2
# 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