From f3e176f6c73bfaaf97366a6127522e9810c6077c Mon Sep 17 00:00:00 2001 From: nomi-nonsz Date: Thu, 1 Jan 2026 18:32:19 +0700 Subject: [PATCH] fix build part 2 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3c9a77b..d42aaae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,10 +18,10 @@ FROM node:20-alpine AS runner WORKDIR /app RUN addgroup --system --gid 1001 nodejs -RUN adduser --system --uid 1001 nextjs +RUN adduser --system --uid 1001 --ingroup nodejs nextjs RUN mkdir -p ./.next/cache -RUN chown nextjs:nextjs ./.next/cache +RUN chown nextjs:nodejs ./.next/cache ENV NODE_ENV=production