13 lines
307 B
Docker
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
|