Files
go/Dockerfile
KoCoder 777ff9814a
All checks were successful
Build and Push Docker Image / build (push) Successful in 3m7s
Use the node source apt repo
2026-05-17 03:00:09 +02:00

14 lines
280 B
Docker

FROM docker.io/codercom/enterprise-base:ubuntu
RUN sudo apt update && sudo apt upgrade -y
RUN sudo apt install curl golang-go delve git -y
# install nvm
RUN curl -fsSL https://deb.nodesource.com/setup_24.x | sudo bash -
RUN sudo apt install -y nodejs
RUN node -v
RUN npm -v