diff --git a/Dockerfile b/Dockerfile index d895d97..f78024a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22.15.0-slim AS build +FROM node:26.3.0-slim AS build WORKDIR /app @@ -10,7 +10,7 @@ RUN yarn install --frozen-lockfile COPY . . RUN yarn build -FROM node:22.15.0-slim AS production +FROM node:26.3.0-slim AS production ENV NODE_ENV=production # Create non-root user for security