Fix web: use absolute path /app/node_modules/.bin/next
Some checks failed
CI / Engine — lint / typecheck / test (push) Has been cancelled
CI / API — lint / typecheck / test (push) Has been cancelled
CI / Web — typecheck / lint / build (push) Has been cancelled

This commit is contained in:
Manohar Gupta 2026-05-13 22:24:26 +05:30
parent e7bb1007e2
commit 71d834e992

View file

@ -35,8 +35,7 @@ COPY --from=builder /app/.env.local ./.env.local
ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
ENV PATH="/app/node_modules/.pnpm/node_modules/next/bin:/app/node_modules/.bin:$PATH"
EXPOSE 3000
CMD ["node", "/app/node_modules/.pnpm/node_modules/next/bin/next", "start"]
CMD ["/app/node_modules/.bin/next", "start"]