From f12075a6d0b72e28bba0292e00439b884816a7a3 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 27 Mar 2025 23:40:47 -0700 Subject: [PATCH] Fix pass CI --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index aeb347c23..7dcad9e2b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,10 +13,14 @@ RUN pnpm install --frozen-lockfile COPY . . COPY .next .next +ARG CI ARG BUILDTIME ARG VERSION ARG REVISION +# Make CI available in RUN steps +ENV CI=$CI + # Build only if needed (local use) RUN pnpm run telemetry \ && if [ "$CI" != "true" ]; then \