Disable telemetry for turbo, next.js in runner image
Some checks failed
CI / lint-and-test (push) Failing after 0s
CI / build (push) Has been skipped

This commit is contained in:
Julia McGhee
2026-03-21 17:54:10 +00:00
parent 8958372716
commit 1dd93aa5a3

View File

@@ -8,4 +8,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& curl -sL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv5.6.0/kustomize_v5.6.0_linux_amd64.tar.gz \ && curl -sL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv5.6.0/kustomize_v5.6.0_linux_amd64.tar.gz \
| tar xz -C /usr/local/bin \ | tar xz -C /usr/local/bin \
&& corepack enable && corepack prepare pnpm@9.15.4 --activate \ && corepack enable && corepack prepare pnpm@9.15.4 --activate \
&& npx -y turbo telemetry disable 2>/dev/null || true \
&& apt-get clean && rm -rf /var/lib/apt/lists/* && apt-get clean && rm -rf /var/lib/apt/lists/*
ENV TURBO_TELEMETRY_DISABLED=1
ENV DO_NOT_TRACK=1
ENV NEXT_TELEMETRY_DISABLED=1