From ba176d2ec13cbf39ac94f2b92972cea88e7832e0 Mon Sep 17 00:00:00 2001 From: kenneth Date: Thu, 30 Oct 2025 00:20:16 +0000 Subject: [PATCH] build: fix dashboard build issue forgot to copy packages node_modules when in dashboard build stage --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index eaaf549..9428bdf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,6 +28,8 @@ ENV VITE_DEFAULT_LONGITUDE=${VITE_DEFAULT_LONGITUDE} COPY --from=deps /app/node_modules ./node_modules COPY --from=deps /app/apps/dashboard/node_modules ./apps/dashboard/node_modules +COPY --from=deps /app/packages/jrpc/node_modules ./packages/jrpc/node_modules +COPY --from=deps /app/packages/zigbee/node_modules ./packages/zigbee/node_modules COPY apps/dashboard ./apps/dashboard COPY packages/jrpc ./packages/jrpc COPY packages/zigbee ./packages/zigbee