Skip to content

Commit

Permalink
chore(deps): update node.js to v22.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 10, 2025
1 parent 3568ea6 commit b1edafb
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 b1edafb

Please sign in to comment.