From 973870ccb276881eb92a2f7970c1ae2e6c3d79aa Mon Sep 17 00:00:00 2001 From: Christopher Kolstad Date: Fri, 31 May 2024 12:04:15 +0200 Subject: [PATCH] chore: bump node 20 version in docker image (#7221) As the title says, bumps from 20.13.1 to 20.14.0 to ensure v6 gets the latest and greatest next week --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ad65197cb7..3e4071ed3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_VERSION=20.13.1-alpine +ARG NODE_VERSION=20.14.0-alpine FROM node:$NODE_VERSION as builder