diff --git a/Dockerfile b/Dockerfile index 1ed7bc15..4890ef1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Builder stage -FROM node:22.22.2 AS builder +FROM node:26.3.0 AS builder WORKDIR /app @@ -19,7 +19,7 @@ RUN yarn global add patch-package RUN yarn build # Stage 2: Production stage -FROM node:22.22.2-slim +FROM node:26.3.0-slim # Update system packages and install security updates RUN apt-get update && apt-get upgrade -y && \