From 3748bacaae1abe880cbb45ab95a4c6efb6cc5f96 Mon Sep 17 00:00:00 2001 From: sriramveeraghanta Date: Wed, 20 Aug 2025 16:14:00 +0530 Subject: [PATCH] fix: docker node_modeles symlink path matching with pnpm path --- 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 dbee2573977..a353357cd65 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"]