From 4c91cce887b148f15f86c88985839020be8616cc Mon Sep 17 00:00:00 2001 From: Christoph Ellrich Date: Wed, 9 Apr 2025 22:23:09 +0200 Subject: [PATCH] add nodejs to Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index b082523..e611e1e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,4 +21,7 @@ RUN . /envfile && \ curl -sLO https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/${ARCH}/kubectl && \ mv kubectl /usr/bin/kubectl && chmod +x /usr/bin/kubectl +# Install Node.js +RUN apt-get update && apt-get install -y nodejs npm + WORKDIR /apps