From 7e7da0b465ce741461429221a152b76a6b3602de Mon Sep 17 00:00:00 2001 From: Zaid Marzguioui Date: Tue, 31 Mar 2026 21:59:23 +0200 Subject: [PATCH] fix(docker): bust cache to rebuild with correct SUPABASE_URL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CACHE_BUST=1→2 forces Docker to re-run 'pnpm install' and 'next build' so NEXT_PUBLIC_SUPABASE_URL=https://myeasycms.frontieralgorithmics.de gets baked into the client-side JS bundle. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9a1720736..e20016dc0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app # --- Install + Build in one stage --- FROM base AS builder -ARG CACHE_BUST=1 +ARG CACHE_BUST=2 COPY . . RUN pnpm install --no-frozen-lockfile ENV NEXT_TELEMETRY_DISABLED=1