From 9b518674f50eea6b85fdf248b3026e014a3a4ded Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jun 2026 03:45:42 +0000 Subject: [PATCH] chore(docker): bump node from 20-alpine3.22 to 26-alpine3.22 Bumps node from 20-alpine3.22 to 26-alpine3.22. --- updated-dependencies: - dependency-name: node dependency-version: 26-alpine3.22 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 8 ++++---- Dockerfile.dev | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 20f892a..77dd140 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # ── Build stage: NestJS ──────────────────────────────────── -FROM node:20-alpine3.22 AS builder +FROM node:26-alpine3.22 AS builder WORKDIR /app COPY package*.json ./ @@ -24,7 +24,7 @@ RUN go get golang.org/x/crypto@v0.49.0 \ RUN CGO_ENABLED=0 go build -tags disable_grpc_modules -ldflags "-s -w" -o /restic ./cmd/restic # ── Production dependencies (clean layer, no npm cache) ─── -FROM node:20-alpine3.22 AS deps +FROM node:26-alpine3.22 AS deps RUN npm install -g npm@latest WORKDIR /app @@ -35,7 +35,7 @@ RUN npm ci --omit=dev --ignore-scripts && npm cache clean --force # Keeps npm/npx available (unlike the stripped runtime stage below) # so the upgrade/deploy scripts can run migrations without exec'ing # into the long-running backupctl container. -FROM node:20-alpine3.22 AS migrator +FROM node:26-alpine3.22 AS migrator WORKDIR /app ENV NODE_ENV=production @@ -44,7 +44,7 @@ COPY --from=builder /app/dist ./dist/ CMD ["npx", "typeorm", "migration:run", "-d", "dist/db/datasource.js"] # ── Production stage ────────────────────────────────────── -FROM node:20-alpine3.22 +FROM node:26-alpine3.22 RUN apk upgrade --no-cache \ && apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/main busybox \ diff --git a/Dockerfile.dev b/Dockerfile.dev index 616cea3..0588bcd 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -15,7 +15,7 @@ RUN CGO_ENABLED=0 go build -tags disable_grpc_modules -ldflags "-s -w" -o /resti # ── Development image ───────────────────────────────────── # Full toolchain + hot reload via NestJS watch mode -FROM node:20-alpine3.22 +FROM node:26-alpine3.22 RUN apk upgrade --no-cache \ && apk add --no-cache \