rewrite from monolithic hono jsx to react 19 spa with tanstack router + hono json api backend. add scan, review, execute, nodes, and setup pages. multi-stage dockerfile (node for vite build, bun for runtime). previously, server/ and src/shared/lib/ were silently excluded by global gitignore patterns (/server/ from emacs, lib/ from python). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
388 B
Docker
19 lines
388 B
Docker
FROM node:22-slim AS build
|
|
WORKDIR /app
|
|
COPY package.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
RUN npx vite build
|
|
|
|
FROM oven/bun:1
|
|
WORKDIR /app
|
|
COPY package.json bun.lock* ./
|
|
RUN bun install --frozen-lockfile --production
|
|
COPY --from=build /app/dist ./dist
|
|
COPY --from=build /app/server ./server
|
|
EXPOSE 3000
|
|
ENV DATA_DIR=/data
|
|
ENV PORT=3000
|
|
VOLUME ["/data"]
|
|
CMD ["bun", "run", "server/index.tsx"]
|