a LOTTTA more migration hoopla shii

This commit is contained in:
user
2026-02-28 16:20:47 +02:00
parent 4d107c8cab
commit 2c8cd1fd15
18 changed files with 208 additions and 81 deletions

View File

@@ -1,22 +1,22 @@
FROM node:25.6.1 AS production
RUN npm i -g bun
RUN npm i -g pnpm
WORKDIR /app
COPY package.json bun.lock turbo.json ./
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml turbo.json ./
COPY apps/main/package.json ./apps/main/package.json
COPY packages ./packages
RUN bun install
RUN pnpm install
COPY apps/main ./apps/main
RUN bun install
RUN pnpm install
RUN bun run build
RUN pnpm run build
COPY scripts ./scripts