chore(deps): update node.js to v24.12.0

This commit is contained in:
renovate[bot]
2025-12-13 01:17:27 +00:00
committed by GitHub
parent 4c8225ed73
commit e80b5cddcd
7 changed files with 150 additions and 156 deletions

View File

@@ -1,4 +1,4 @@
FROM node:24.11.1-alpine AS builder
FROM node:24.12.0-alpine AS builder
RUN corepack enable
# 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/
# We have to use --no-frozen-lockfile due to CKEditor patches
RUN pnpm install --no-frozen-lockfile --prod && pnpm rebuild
FROM node:24.11.1-alpine
FROM node:24.12.0-alpine
# Create a non-root user with configurable UID/GID
ARG USER=trilium
ARG UID=1001