Some checks failed
Build and Push Docker Image / build (push) Failing after 2m13s
15 lines
334 B
Docker
15 lines
334 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
|
|
|
|
RUN npm install -g @bufbuild/buf @tanstack/cli@latest |