From 5f7aaced93634da88dc49c3621a4ab95c44ef329 Mon Sep 17 00:00:00 2001 From: Manuel Leduc Date: Fri, 12 Jan 2024 08:56:39 +0100 Subject: [PATCH] [Misc] Upgrade node to 20.11.0 --- build-node/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-node/Dockerfile b/build-node/Dockerfile index 9a7d237..cc70689 100644 --- a/build-node/Dockerfile +++ b/build-node/Dockerfile @@ -20,7 +20,7 @@ # Initialize an agent with node tooling installed (i.e., node, npm, and pnpm) # We use a multi stages build to install pnpm in a node container, before copying the node executables the Jenkins # agent without persisting intermediate layers, for a lighter docker image. -FROM node:20.10.0 AS node_base +FROM node:20.11.0 AS node_base # Enable corepack to be able to manipulate pnpm version. RUN corepack enable # Activate and install pnpm.