Skip to content

Commit 38a3f46

Browse files
authored
chore(deps): update node.js to v22.21.0 (#7503)
2 parents bf7506f + 62a69a0 commit 38a3f46

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

apps/server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.20.0-bullseye-slim AS builder
1+
FROM node:22.21.0-bullseye-slim AS builder
22
RUN corepack enable
33

44
# Install native dependencies since we might be building cross-platform.
@@ -7,7 +7,7 @@ COPY ./docker/package.json ./docker/pnpm-workspace.yaml /usr/src/app/
77
# We have to use --no-frozen-lockfile due to CKEditor patches
88
RUN pnpm install --no-frozen-lockfile --prod && pnpm rebuild
99

10-
FROM node:22.20.0-bullseye-slim
10+
FROM node:22.21.0-bullseye-slim
1111
# Install only runtime dependencies
1212
RUN apt-get update && \
1313
apt-get install -y --no-install-recommends \

apps/server/Dockerfile.alpine

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.20.0-alpine AS builder
1+
FROM node:22.21.0-alpine AS builder
22
RUN corepack enable
33

44
# Install native dependencies since we might be building cross-platform.
@@ -7,7 +7,7 @@ COPY ./docker/package.json ./docker/pnpm-workspace.yaml /usr/src/app/
77
# We have to use --no-frozen-lockfile due to CKEditor patches
88
RUN pnpm install --no-frozen-lockfile --prod && pnpm rebuild
99

10-
FROM node:22.20.0-alpine
10+
FROM node:22.21.0-alpine
1111
# Install runtime dependencies
1212
RUN apk add --no-cache su-exec shadow
1313

apps/server/Dockerfile.alpine.rootless

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.20.0-alpine AS builder
1+
FROM node:22.21.0-alpine AS builder
22
RUN corepack enable
33

44
# Install native dependencies since we might be building cross-platform.
@@ -7,7 +7,7 @@ COPY ./docker/package.json ./docker/pnpm-workspace.yaml /usr/src/app/
77
# We have to use --no-frozen-lockfile due to CKEditor patches
88
RUN pnpm install --no-frozen-lockfile --prod && pnpm rebuild
99

10-
FROM node:22.20.0-alpine
10+
FROM node:22.21.0-alpine
1111
# Create a non-root user with configurable UID/GID
1212
ARG USER=trilium
1313
ARG UID=1001

apps/server/Dockerfile.rootless

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.20.0-bullseye-slim AS builder
1+
FROM node:22.21.0-bullseye-slim AS builder
22
RUN corepack enable
33

44
# Install native dependencies since we might be building cross-platform.
@@ -7,7 +7,7 @@ COPY ./docker/package.json ./docker/pnpm-workspace.yaml /usr/src/app/
77
# We have to use --no-frozen-lockfile due to CKEditor patches
88
RUN pnpm install --no-frozen-lockfile --prod && pnpm rebuild
99

10-
FROM node:22.20.0-bullseye-slim
10+
FROM node:22.21.0-bullseye-slim
1111
# Create a non-root user with configurable UID/GID
1212
ARG USER=trilium
1313
ARG UID=1001

0 commit comments

Comments
 (0)