mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-01 01:19:38 +02:00
43 lines
1.7 KiB
Docker
43 lines
1.7 KiB
Docker
# TrustGraph TypeScript — multi-stage build for all Bun services.
|
|
# A single image is built once; each service overrides CMD to pick its entrypoint.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Stage 1: Build
|
|
# ---------------------------------------------------------------------------
|
|
FROM oven/bun:1.3.13-slim AS builder
|
|
WORKDIR /app
|
|
|
|
# Copy workspace config first for layer caching
|
|
COPY package.json bun.lock pnpm-workspace.yaml turbo.json tsconfig.base.json tsconfig.json ./
|
|
COPY packages/base/package.json packages/base/tsconfig.json packages/base/
|
|
COPY packages/client/package.json packages/client/tsconfig.json packages/client/
|
|
COPY packages/flow/package.json packages/flow/tsconfig.json packages/flow/
|
|
COPY packages/cli/package.json packages/cli/tsconfig.json packages/cli/
|
|
COPY packages/mcp/package.json packages/mcp/tsconfig.json packages/mcp/
|
|
COPY packages/workbench/package.json packages/workbench/tsconfig.json packages/workbench/
|
|
|
|
RUN bun install --frozen-lockfile
|
|
|
|
# Copy source and build
|
|
COPY packages/ packages/
|
|
RUN bunx --bun turbo build --filter=@trustgraph/base --filter=@trustgraph/client --filter=@trustgraph/flow
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Stage 2: Runtime
|
|
# ---------------------------------------------------------------------------
|
|
FROM oven/bun:1.3.13-slim AS runtime
|
|
WORKDIR /app
|
|
|
|
# Copy built output and production deps
|
|
COPY --from=builder /app/node_modules ./node_modules
|
|
COPY --from=builder /app/packages ./packages
|
|
COPY --from=builder /app/package.json ./
|
|
COPY --from=builder /app/pnpm-workspace.yaml ./
|
|
COPY entrypoints/ ./entrypoints/
|
|
|
|
# Default env
|
|
ENV NODE_ENV=production
|
|
ENV NATS_URL=nats://nats:4222
|
|
|
|
EXPOSE 8088
|
|
CMD ["bun", "entrypoints/gateway.mjs"]
|