Skip to content

Commit 02e7d4a

Browse files
authored
feat(docker): Security upgrade Node.js from 22.18.0 to 22.20.0 (#10008)
1 parent 039f0e1 commit 02e7d4a

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.18.0
1+
22.20.0

packages/cubejs-docker/dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.18.0-bookworm-slim AS base
1+
FROM node:22.20.0-bookworm-slim AS base
22

33
ARG IMAGE_VERSION=dev
44

packages/cubejs-docker/latest.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.18.0-bookworm-slim AS builder
1+
FROM node:22.20.0-bookworm-slim AS builder
22

33
WORKDIR /cube
44
COPY . .
@@ -21,7 +21,7 @@ RUN yarn install --prod \
2121
&& rm -rf /cube/node_modules/duckdb/src \
2222
&& yarn cache clean
2323

24-
FROM node:22.18.0-bookworm-slim
24+
FROM node:22.20.0-bookworm-slim
2525

2626
ARG IMAGE_VERSION=unknown
2727

packages/cubejs-docker/local.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG DEV_BUILD_IMAGE=cubejs/cube:build
22

33
FROM $DEV_BUILD_IMAGE AS build
4-
FROM node:22.18.0-bookworm-slim
4+
FROM node:22.20.0-bookworm-slim
55

66
ARG IMAGE_VERSION=dev
77

packages/cubejs-docker/testing-drivers.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
######################################################################
22
# Base image #
33
######################################################################
4-
FROM node:22.18.0-bookworm-slim AS base
4+
FROM node:22.20.0-bookworm-slim AS base
55

66
ARG IMAGE_VERSION=dev
77

0 commit comments

Comments
 (0)