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,20 +1,20 @@
FROM oven/bun:1.3.5-alpine
FROM node:25.6.1-alpine AS production
RUN apk add --no-cache xh
WORKDIR /app
COPY package.json bun.lock turbo.json ./
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml turbo.json ./
COPY apps/processor/package.json ./apps/processor/package.json
COPY packages ./packages
RUN bun install
RUN pnpm install
COPY apps/processor ./apps/processor
RUN bun install
RUN pnpm install
COPY scripts ./scripts