diff --git a/Dockerfile b/Dockerfile index c3b2a7959..004d2fbed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ @@ -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 \ diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 7f915560a..60406404d 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -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 \ @@ -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