From 6567d397ad4c71036765675240c11922e08cd4c0 Mon Sep 17 00:00:00 2001 From: jordan Date: Tue, 10 Feb 2026 19:43:02 -0700 Subject: [PATCH] fix: bind Next.js to all interfaces (0.0.0.0) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 2f7e385..c76741d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,7 @@ WORKDIR /app ENV NODE_ENV=production ENV PORT=3000 +ENV HOSTNAME=0.0.0.0 # Don't run as root RUN addgroup --system --gid 1001 nodejs && \