switch to bun + adopt e2e dependency stack

This commit is contained in:
2026-06-02 01:41:01 +00:00
committed by hueso
parent ec1053c660
commit 6caf34b579
8 changed files with 2415 additions and 18181 deletions
+6 -6
View File
@@ -1,10 +1,10 @@
FROM node:lts-alpine
FROM oven/bun:1.1-alpine
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn
COPY ./ ./
COPY package.json bun.lock ./
COPY vendor ./vendor
RUN bun install --frozen-lockfile
COPY . .
EXPOSE 3000
CMD ["yarn", "start"]
CMD ["bun", "run", "start"]