This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
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
|
||||
Reference in New Issue
Block a user