Skip to content

Commit

Permalink
feat(docker): Security upgrade Node.js from 18.19.1 to 18.20.1 (cube-…
Browse files Browse the repository at this point in the history
  • Loading branch information
2 people authored and JichaoS committed May 7, 2024
1 parent f75c9bc commit 277e43c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.19.1
18.20.1
2 changes: 1 addition & 1 deletion packages/cubejs-docker/dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.19.1-bullseye-slim AS base
FROM node:18.20.1-bullseye-slim AS base

ARG IMAGE_VERSION=dev

Expand Down
4 changes: 2 additions & 2 deletions packages/cubejs-docker/latest-debian-jdk.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile-upstream:master-experimental
FROM node:18.19.1-bullseye-slim as builder
FROM node:18.20.1-bullseye-slim as builder

WORKDIR /cube
COPY . .
Expand All @@ -18,7 +18,7 @@ RUN apt-get update \
# action. So, a process will use the root lock file here.
RUN yarn install --prod && yarn cache clean

FROM node:18.19.1-bullseye-slim
FROM node:18.20.1-bullseye-slim

ARG IMAGE_VERSION=unknown

Expand Down
4 changes: 2 additions & 2 deletions packages/cubejs-docker/latest.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.19.1-bullseye-slim as builder
FROM node:18.20.1-bullseye-slim as builder

WORKDIR /cube
COPY . .
Expand All @@ -17,7 +17,7 @@ RUN apt-get update \
# action. So, a process will use the root lock file here.
RUN yarn install --prod && yarn cache clean

FROM node:18.19.1-bullseye-slim
FROM node:18.20.1-bullseye-slim

ARG IMAGE_VERSION=unknown

Expand Down
2 changes: 1 addition & 1 deletion packages/cubejs-docker/local.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG DEV_BUILD_IMAGE=cubejs/cube:build

FROM $DEV_BUILD_IMAGE as build
FROM node:18.19.1-bullseye-slim
FROM node:18.20.1-bullseye-slim

ARG IMAGE_VERSION=dev

Expand Down
2 changes: 1 addition & 1 deletion packages/cubejs-docker/testing-drivers.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
######################################################################
# Base image #
######################################################################
FROM node:18.19.1-bullseye-slim AS base
FROM node:18.20.1-bullseye-slim AS base

ARG IMAGE_VERSION=dev

Expand Down

0 comments on commit 277e43c

Please sign in to comment.