From 6d35387e2bb3cc2b40f878e4895011de2e2c5960 Mon Sep 17 00:00:00 2001 From: kurihada Date: Sun, 1 Mar 2026 12:03:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B8=85=E9=99=A4=E8=BF=90=E8=A1=8C?= =?UTF-8?q?=E6=97=B6=E4=BB=A3=E7=90=86=E7=8E=AF=E5=A2=83=E5=8F=98=E9=87=8F?= =?UTF-8?q?=EF=BC=88=E6=9E=84=E5=BB=BA=E6=97=B6=E4=BB=A3=E7=90=86=E4=B8=8D?= =?UTF-8?q?=E5=BA=94=E6=B3=84=E6=BC=8F=E5=88=B0=E8=BF=90=E8=A1=8C=E6=97=B6?= =?UTF-8?q?=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dd5ec79..0a732b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -95,7 +95,10 @@ RUN mkdir -p /home/appuser/.social-mcp \ USER appuser # Environment defaults -ENV NODE_ENV=production \ +# Clear proxy env from build stage (must not leak into runtime) +ENV HTTP_PROXY= \ + HTTPS_PROXY= \ + NODE_ENV=production \ HOST=0.0.0.0 \ PORT=3000 \ HEADLESS=true \