Backend: - Enterprise Agent refactored from single-round to ReAct multi-turn loop - New agent.ts (LLM decision node) + tool-executor.ts (tool execution + Gen-UI) - tool-defs.ts extracted for shared tool schemas - MAX_ITERATIONS=6 safeguard against infinite loops Frontend: - MessageBubble: Markdown + code highlighting + LaTeX + tables - ThemeToggle: light/dark/system theme cycling - chart-result Gen-UI card: recharts bar/line/pie/area charts Infrastructure: - Docker Compose (lightweight): only LangGraph + Frontend, Azure cloud for PG/Redis/Blob - Dockerfiles for dev (hot reload) and prod - Makefile with dev/prod/down/logs commands - Updated CLAUDE.md and agent definitions for LangGraph.js architecture Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
845 B
Docker
36 lines
845 B
Docker
# LangGraph Server - Production
|
|
# Multi-stage build for smaller image
|
|
FROM node:20-slim AS deps
|
|
|
|
WORKDIR /app
|
|
|
|
RUN npm install -g pnpm@10
|
|
|
|
COPY package.json pnpm-lock.yaml .npmrc ./
|
|
|
|
# Install production + dev dependencies (langgraphjs CLI is in dependencies)
|
|
RUN pnpm install --frozen-lockfile
|
|
|
|
# ---- Production image ----
|
|
FROM node:20-slim
|
|
|
|
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
COPY . .
|
|
|
|
# LangGraph dev prerequisites
|
|
RUN touch .env && mkdir -p .langgraph_api
|
|
|
|
# Run as non-root
|
|
RUN addgroup --system --gid 1001 nodejs && \
|
|
adduser --system --uid 1001 langgraph && \
|
|
chown -R langgraph:nodejs /app
|
|
USER langgraph
|
|
|
|
EXPOSE 2024
|
|
|
|
CMD ["./node_modules/.bin/langgraphjs", "dev", "--host", "0.0.0.0", "--port", "2024", "--no-browser"]
|