Merge pull request #913 from TriliumNext/renovate/node-22.x

chore(deps): update node.js to v22.13.0
This commit is contained in:
Elian Doran 2025-01-11 01:39:33 +02:00 committed by GitHub
commit 25cd18f6c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# Build stage # Build stage
FROM node:22.12.0-bullseye-slim AS builder FROM node:22.13.0-bullseye-slim AS builder
# Configure build dependencies in a single layer # Configure build dependencies in a single layer
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
@ -35,7 +35,7 @@ RUN cp -R build/src/* src/. && \
rm src/services/asset_path.ts rm src/services/asset_path.ts
# Runtime stage # Runtime stage
FROM node:22.12.0-bullseye-slim FROM node:22.13.0-bullseye-slim
# Install only runtime dependencies # Install only runtime dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \

View File

@ -1,5 +1,5 @@
# Build stage # Build stage
FROM node:22.12.0-alpine AS builder FROM node:22.13.0-alpine AS builder
# Configure build dependencies # Configure build dependencies
RUN apk add --no-cache --virtual .build-dependencies \ RUN apk add --no-cache --virtual .build-dependencies \
@ -34,7 +34,7 @@ RUN cp -R build/src/* src/. && \
rm src/services/asset_path.ts rm src/services/asset_path.ts
# Runtime stage # Runtime stage
FROM node:22.12.0-alpine FROM node:22.13.0-alpine
# Install runtime dependencies # Install runtime dependencies
RUN apk add --no-cache su-exec shadow RUN apk add --no-cache su-exec shadow