Skip to content

Commit

Permalink
Merge pull request #913 from TriliumNext/renovate/node-22.x
Browse files Browse the repository at this point in the history
chore(deps): update node.js to v22.13.0
  • Loading branch information
eliandoran authored Jan 10, 2025
2 parents 4829d7e + b1edafb commit 25cd18f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 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
RUN apt-get update && apt-get install -y --no-install-recommends \
Expand Down Expand Up @@ -35,7 +35,7 @@ RUN cp -R build/src/* src/. && \
rm src/services/asset_path.ts

# Runtime stage
FROM node:22.12.0-bullseye-slim
FROM node:22.13.0-bullseye-slim

# Install only runtime dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM node:22.12.0-alpine AS builder
FROM node:22.13.0-alpine AS builder

# Configure build dependencies
RUN apk add --no-cache --virtual .build-dependencies \
Expand Down Expand Up @@ -34,7 +34,7 @@ RUN cp -R build/src/* src/. && \
rm src/services/asset_path.ts

# Runtime stage
FROM node:22.12.0-alpine
FROM node:22.13.0-alpine

# Install runtime dependencies
RUN apk add --no-cache su-exec shadow
Expand Down

0 comments on commit 25cd18f

Please sign in to comment.