From 0feb30a0e8aac6d7414e30c310254c09ee0b3f45 Mon Sep 17 00:00:00 2001 From: Kieran Date: Wed, 23 Aug 2023 15:28:11 +0100 Subject: [PATCH] Use node20 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bd32e17..96657b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build-env WORKDIR /app #install npm -RUN curl -fsSL https://deb.nodesource.com/setup_19.x | bash - +RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - RUN apt-get install -y nodejs #run yarn install