From ce0f13fe7277de17dfbe905ace04cbc13c5b674b Mon Sep 17 00:00:00 2001 From: Anthony Johnson Date: Mon, 1 Jun 2026 19:54:24 -0700 Subject: [PATCH] Update dockerfile node as well to match nodejs upgrade to 24.16 Missed these, another good point for keeping the Dockerfile in the individual repositories instead of separate in this repo. --- dockerfiles/Dockerfile.addons | 2 +- dockerfiles/Dockerfile.webpack | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/Dockerfile.addons b/dockerfiles/Dockerfile.addons index b59c02d..3cec085 100644 --- a/dockerfiles/Dockerfile.addons +++ b/dockerfiles/Dockerfile.addons @@ -1,4 +1,4 @@ -FROM node:22.16.0 +FROM node:24.16.0 COPY package-lock.json /usr/src/app/checkouts/addons/ COPY package.json /usr/src/app/checkouts/addons/ WORKDIR /usr/src/app/checkouts/addons/ diff --git a/dockerfiles/Dockerfile.webpack b/dockerfiles/Dockerfile.webpack index ceea476..4ba4499 100644 --- a/dockerfiles/Dockerfile.webpack +++ b/dockerfiles/Dockerfile.webpack @@ -1,4 +1,4 @@ -FROM node:22.11 +FROM node:24.16.0 COPY package-lock.json /usr/src/app/checkouts/ext-theme/ COPY package.json /usr/src/app/checkouts/ext-theme/ WORKDIR /usr/src/app/checkouts/ext-theme