From b4a076a4949ab707817d14ac8afd16f0b7b01a17 Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Wed, 9 Mar 2022 12:13:33 +0100 Subject: [PATCH] Disable telemetry in build container (idk why) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index f420415..1cf6d4d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,7 @@ WORKDIR /app COPY package.json package-lock.json ./ RUN npm ci COPY . . +ENV NEXT_TELEMETRY_DISABLED 1 RUN npm run build # Production image, copy all the files and run next