From 380d18c8066a13931af99675728d67154a3dfb13 Mon Sep 17 00:00:00 2001 From: Julius Zeidler Date: Thu, 10 Apr 2025 13:31:37 +0200 Subject: [PATCH] add nodejs to images --- alpine/Dockerfile | 4 ++-- ubuntu/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 547a839..3bf2f92 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -1,7 +1,7 @@ FROM alpine RUN apk update && \ - apk add --no-cache curl jq bash git coreutils zip openssh zsh && \ - rm -rf /var/cache/apk/* + apk add --no-cache curl jq bash git coreutils zip openssh zsh nodejs npm yarn && \ + rm -rf /var/cache/apk/* CMD [ "zsh" ] diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile index 443e3bd..6b3f69b 100644 --- a/ubuntu/Dockerfile +++ b/ubuntu/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu RUN apt-get -y update && \ - apt-get install -y curl jq bash git zsh docker + apt-get install -y curl jq bash git zsh docker nodejs npm yarn CMD [ "zsh" ]