From 0ff0758b74772179e92852fae995314a17a50bb1 Mon Sep 17 00:00:00 2001 From: webstreamr <210764791+webstreamr@users.noreply.github.com> Date: Thu, 25 Sep 2025 09:11:35 +0200 Subject: [PATCH] chore: lock to latest node major only (#382) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5d71c6f..f27a25d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22.20-alpine AS builder +FROM node:22-alpine AS builder WORKDIR /app COPY package*.json ./ @@ -10,7 +10,7 @@ RUN npm run build RUN npm ci --only=production -FROM node:22.20-alpine +FROM node:22-alpine WORKDIR /app COPY --from=builder /app/dist ./dist