Skip to content

Commit c376e23

Browse files
authored
feat(docker): Upgrade Node.js to 16.20.2 (#7111)
1 parent 54bb2d9 commit c376e23

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

packages/cubejs-docker/dev-alpine.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This image has been deprecated!
22

3-
FROM node:16.20.1-alpine3.17
3+
FROM node:16.20.2-alpine3.17
44

55
ARG IMAGE_VERSION=dev
66

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:16.20.1-bullseye-slim AS base
1+
FROM node:16.20.2-bullseye-slim AS base
22

33
ARG IMAGE_VERSION=dev
44

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16.20.1-alpine3.17 as builder
1+
FROM node:16.20.2-alpine3.17 as builder
22

33
WORKDIR /cube
44
COPY . .
@@ -19,7 +19,7 @@ ENV PATH "$JAVA_HOME/bin:${PATH}"
1919
# action. So, a process will use the root lock file here.
2020
RUN yarn install --prod && yarn cache clean
2121

22-
FROM node:16.20.1-alpine3.17
22+
FROM node:16.20.2-alpine3.17
2323

2424
ARG IMAGE_VERSION=unknown
2525

packages/cubejs-docker/latest-alpine.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16.20.1-alpine3.17 as builder
1+
FROM node:16.20.2-alpine3.17 as builder
22

33
WORKDIR /cube
44
COPY . .
@@ -16,7 +16,7 @@ RUN apk update \
1616
# action. So, a process will use the root lock file here.
1717
RUN yarn install --prod && yarn cache clean
1818

19-
FROM node:16.20.1-alpine3.17
19+
FROM node:16.20.2-alpine3.17
2020

2121
ARG IMAGE_VERSION=unknown
2222

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:16.20.1-bullseye-slim as builder
2+
FROM node:16.20.2-bullseye-slim as builder
33

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

21-
FROM node:16.20.1-bullseye-slim
21+
FROM node:16.20.2-bullseye-slim
2222

2323
ARG IMAGE_VERSION=unknown
2424

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:16.20.1-bullseye-slim as builder
1+
FROM node:16.20.2-bullseye-slim as builder
22

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

20-
FROM node:16.20.1-bullseye-slim
20+
FROM node:16.20.2-bullseye-slim
2121

2222
ARG IMAGE_VERSION=unknown
2323

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:16.20.1-bullseye-slim
4+
FROM node:16.20.2-bullseye-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:16.20.1-bullseye-slim AS base
4+
FROM node:16.20.2-bullseye-slim AS base
55

66
ARG IMAGE_VERSION=dev
77

0 commit comments

Comments
 (0)