From 94e700d2e70de8bf1b24828382ba7c36ca0f7e43 Mon Sep 17 00:00:00 2001 From: "D. Scott Boggs" Date: Thu, 8 May 2025 08:49:36 -0400 Subject: [PATCH] UID/GID 1000 was in use --- frontend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 6f8a732..b80ab45 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -33,8 +33,8 @@ ENV NODE_ENV=production # Uncomment the following line in case you want to disable telemetry during runtime. ENV NEXT_TELEMETRY_DISABLED=1 -RUN addgroup --system --gid 1000 nodejs -RUN adduser --system --uid 1000 nextjs +RUN addgroup --system --gid 1001 nodejs +RUN adduser --system --uid 1001 nextjs COPY --from=builder /app/public ./public