From c7a45e9c41805389554f759e5758bd989205ad97 Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Sat, 27 Sep 2025 09:35:56 -0500 Subject: [PATCH] fix: generate Panda CSS styled-system before building in Docker --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index b8a8446d..6880a9b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,9 @@ RUN pnpm install --frozen-lockfile FROM base AS builder COPY . . +# Generate Panda CSS styled-system before building +RUN cd apps/web && npx @pandacss/dev + # Build using turbo for apps/web and its dependencies RUN turbo build --filter=@soroban/web