From 200c905b16efafe76616508cbe1a78abe9b75e61 Mon Sep 17 00:00:00 2001 From: Klas Broberg Date: Mon, 15 Sep 2025 14:58:39 +0200 Subject: [PATCH] added node aswell --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0619c50..a236d33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,10 @@ RUN wget https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.3 && mkdir -p /usr/share/dotnet \ && tar -zxf dotnet-sdk.tar.gz -C /usr/share/dotnet \ && rm dotnet-sdk.tar.gz + # Install Node.js (LTS version) using apk +# Lets install node +RUN apk add --no-cache nodejs npm # Set environment variables for .NET before verifying installation ENV DOTNET_ROOT=/usr/share/dotnet