From ae258ae67f9cfda7ca8561ab6e067415b1052bd8 Mon Sep 17 00:00:00 2001 From: Boaz Poolman Date: Sun, 1 Mar 2026 18:42:43 +0100 Subject: [PATCH] chore: use node 20 to build the docs --- docs/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Dockerfile b/docs/Dockerfile index 5494854..729737a 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -2,7 +2,7 @@ # Stage 1: Base image. ## Start with a base image containing NodeJS so we can build Docusaurus. -FROM node:18-alpine3.18 as base +FROM node:20-alpine as base ## Disable colour output from yarn to make logs easier to read. ENV FORCE_COLOR=0 ## Enable corepack.