Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.18.0
22.20.0
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:22.18.0-bookworm-slim AS base
FROM node:22.20.0-bookworm-slim AS base

ARG IMAGE_VERSION=dev

Expand Down Expand Up @@ -184,7 +184,7 @@
COPY packages/cubejs-docker/bin/cubejs-dev /usr/local/bin/cubejs

# By default Node dont search in parent directory from /cube/conf, @todo Reaserch a little bit more
ENV NODE_PATH /cube/conf/node_modules:/cube/node_modules

Check warning on line 187 in packages/cubejs-docker/dev.Dockerfile

View workflow job for this annotation

GitHub Actions / Build & Test :dev for Debian without pushing

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV PYTHONUNBUFFERED=1
RUN ln -s /cubejs/packages/cubejs-docker /cube
RUN ln -s /cubejs/rust/cubestore/bin/cubestore-dev /usr/local/bin/cubestore-dev
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:22.18.0-bookworm-slim AS builder
FROM node:22.20.0-bookworm-slim AS builder

WORKDIR /cube
COPY . .
Expand All @@ -21,7 +21,7 @@ RUN yarn install --prod \
&& rm -rf /cube/node_modules/duckdb/src \
&& yarn cache clean

FROM node:22.18.0-bookworm-slim
FROM node:22.20.0-bookworm-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:22.18.0-bookworm-slim
FROM node:22.20.0-bookworm-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:22.18.0-bookworm-slim AS base
FROM node:22.20.0-bookworm-slim AS base

ARG IMAGE_VERSION=dev

Expand Down
Loading