feat: migrate to Elysia and Bun

This commit is contained in:
2026-04-13 21:44:55 +07:00
parent 4809f99bb0
commit 4350b6903b
9 changed files with 249 additions and 435 deletions
+3 -4
View File
@@ -1,9 +1,8 @@
FROM node:18 as build
FROM oven/bun:1 as build
WORKDIR /home/node/app
COPY . .
RUN apt-get update -y
RUN yarn
RUN bun install
CMD ["node", "index.js"]
CMD ["bun", "run", "src/index.ts"]