From 27237bd8c6e7687d2d3ae36a3db3011e24b63cb8 Mon Sep 17 00:00:00 2001 From: Clemens Hering Date: Mon, 10 Nov 2025 07:36:17 +0100 Subject: [PATCH] disable astro telemetry --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index d41f523..4ba38da 100644 --- a/Containerfile +++ b/Containerfile @@ -1,5 +1,6 @@ # Multi-stage build for Astro static site FROM node:22-alpine AS builder +ENV ASTRO_TELEMETRY_DISABLED=1 WORKDIR /app # Install deps