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