From 3c3d4eda48d7da87de4e520807ea4fc3913517b7 Mon Sep 17 00:00:00 2001 From: Clemens Hering Date: Mon, 10 Nov 2025 07:39:14 +0100 Subject: [PATCH] disable astro telemetry --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 4ba38da..7770436 100644 --- a/Containerfile +++ b/Containerfile @@ -1,6 +1,5 @@ # Multi-stage build for Astro static site FROM node:22-alpine AS builder -ENV ASTRO_TELEMETRY_DISABLED=1 WORKDIR /app # Install deps @@ -18,6 +17,7 @@ ENV NODE_ENV=production ENV PORT=3000 ENV WEB_ROOT=/app/dist ENV TZ=Europe/Berlin +ENV ASTRO_TELEMETRY_DISABLED=1 COPY --from=builder /app/dist /app/dist COPY server.mjs /app/server.mjs # Drop root: use the pre-created node user