fix: use bun to run server, node not available in bun image

This commit is contained in:
2026-04-21 23:41:30 +02:00
parent 62e73a4499
commit 4e8975d947

View File

@@ -16,4 +16,4 @@ RUN bun run build
EXPOSE 3000
CMD ["node", ".output/server/index.mjs"]
CMD ["bun", "run", ".output/server/index.mjs"]