fix: docker node_modeles symlink path matching with pnpm path (#7605)
This commit is contained in:
parent
6636b8882f
commit
7e15fcc080
1 changed files with 3 additions and 2 deletions
|
|
@ -53,11 +53,12 @@ FROM base AS runner
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY --from=installer /app/packages ./packages
|
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
|
COPY --from=installer /app/node_modules ./node_modules
|
||||||
|
|
||||||
ENV TURBO_TELEMETRY_DISABLED=1
|
ENV TURBO_TELEMETRY_DISABLED=1
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
||||||
CMD ["node", "live/server.js"]
|
CMD ["node", "apps/live/dist/server.js"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue