From 68eaba330817dac7b5a695759a36d8a0b2e1a04f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Jun 2026 01:12:13 +0000 Subject: [PATCH] Bump node from 24-alpine to 26-alpine Bumps node from 24-alpine to 26-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 26-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f8ca616..cfcbcad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # better-sqlite3 is a native module; build tools are only needed in this stage. -FROM node:24-alpine AS build +FROM node:26-alpine AS build RUN apk add --no-cache python3 make g++ WORKDIR /app COPY package.json package-lock.json ./ @@ -8,7 +8,7 @@ COPY tsconfig.json ./ COPY src ./src RUN npm run build && npm prune --omit=dev -FROM node:24-alpine +FROM node:26-alpine WORKDIR /app ENV NODE_ENV=production COPY --from=build /app/node_modules ./node_modules