From 4d5177004c5672c6da615244ef78660fb38a4ace Mon Sep 17 00:00:00 2001 From: john kevin asprec Date: Tue, 16 Jun 2026 22:33:09 +0800 Subject: [PATCH] chore: update Dockerfile to explicitly set PORT environment variable to 3002 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 09b07ec..753f4ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN apk add --no-cache dumb-init RUN addgroup --system --gid 1001 nodejs && adduser --system --uid 1001 nextjs COPY --from=builder /app/.next/standalone ./ COPY --from=builder /app/.next/static ./.next/static -ENV NODE_ENV=production HOSTNAME=0.0.0.0 +ENV NODE_ENV=production HOSTNAME=0.0.0.0 PORT=3002 EXPOSE 3002 USER nextjs ENTRYPOINT ["dumb-init", "--"]