Skip to content

Commit efbb709

Browse files
ovrsnyk-bot
andauthored
feat(docker): Security upgrade node from 22.14.0 to 22.16.0 (#9602)
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963 - https://snyk.io/vuln/SNYK-DEBIAN12-PERL-9689899 - https://snyk.io/vuln/SNYK-DEBIAN12-PAM-8303301 - https://snyk.io/vuln/SNYK-DEBIAN12-PERL-1556505 - https://snyk.io/vuln/SNYK-DEBIAN12-PERL-5489184 --------- Co-authored-by: snyk-bot <snyk-bot@snyk.io>
1 parent f80b05b commit efbb709

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.14.0
1+
22.16.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.14.0-bookworm-slim AS base
1+
FROM node:22.16.0-bookworm-slim AS base
22

33
ARG IMAGE_VERSION=dev
44

packages/cubejs-docker/latest-debian-jdk.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile-upstream:master-experimental
2-
FROM node:22.14.0-bookworm-slim as builder
2+
FROM node:22.16.0-bookworm-slim as builder
33

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

25-
FROM node:22.14.0-bookworm-slim
25+
FROM node:22.16.0-bookworm-slim
2626

2727
ARG IMAGE_VERSION=unknown
2828

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.14.0-bookworm-slim AS builder
1+
FROM node:22.16.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.14.0-bookworm-slim
24+
FROM node:22.16.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.14.0-bookworm-slim
4+
FROM node:22.16.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.14.0-bookworm-slim AS base
4+
FROM node:22.16.0-bookworm-slim AS base
55

66
ARG IMAGE_VERSION=dev
77

0 commit comments

Comments
 (0)