From 7e15fcc080b339db24a273b03f2b84373dfa7c32 Mon Sep 17 00:00:00 2001 From: sriram veeraghanta Date: Wed, 20 Aug 2025 16:17:35 +0530 Subject: [PATCH] fix: docker node_modeles symlink path matching with pnpm path (#7605) --- apps/live/Dockerfile.live | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/live/Dockerfile.live b/apps/live/Dockerfile.live index dbee25739..a353357cd 100644 --- a/apps/live/Dockerfile.live +++ b/apps/live/Dockerfile.live @@ -53,11 +53,12 @@ FROM base AS runner WORKDIR /app COPY --from=installer /app/packages ./packages -COPY --from=installer /app/apps/live/dist ./live +COPY --from=installer /app/apps/live/dist ./apps/live/dist +COPY --from=installer /app/apps/live/node_modules ./apps/live/node_modules COPY --from=installer /app/node_modules ./node_modules ENV TURBO_TELEMETRY_DISABLED=1 EXPOSE 3000 -CMD ["node", "live/server.js"] +CMD ["node", "apps/live/dist/server.js"]