nano-go/Dockerfile
Ondrej Vlach 54c35c88dc
All checks were successful
release / deploy (push) Successful in 1m35s
initial commit
2025-04-10 22:23:38 +02:00

13 lines
307 B
Docker

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