From 6a63e2801d0167f229f694157ee5bb9e76b3c603 Mon Sep 17 00:00:00 2001 From: bagas Date: Sat, 3 Jan 2026 14:07:12 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 671a1b4..bcc1243 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24-alpine AS base +FROM node:24-slim AS base WORKDIR /app ENV NEXT_TELEMETRY_DISABLED=1 @@ -13,7 +13,7 @@ COPY --from=deps /app/node_modules ./node_modules COPY . . RUN npm run build -FROM gcr.io/distroless/nodejs22-debian12 AS runner +FROM gcr.io/distroless/nodejs24-debian13 AS runner WORKDIR /app ENV NODE_ENV=production ENV NEXT_TELEMETRY_DISABLED=1