mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
a8a006e4fc
@langchain/langgraph-api@1.2.1 (pulled transitively by langgraph-cli) imports STREAM_EVENTS_V3_MODES from @langchain/langgraph/web, which only exists in 1.3.0. The starter's overrides + agent dep were pinning langgraph to 1.2.9, causing the agent container to crash on startup with a SyntaxError. Bump the override and the direct pin to 1.3.0, and pin @langchain/langgraph-cli in the npx invocations so future cross-package drift in the LangChain ecosystem cannot silently re-break this starter. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
19 lines
412 B
Docker
19 lines
412 B
Docker
# Dockerfile for the LangGraph JS agent.
|
|
# Mirrors the user experience: npm install + langgraph-cli dev.
|
|
FROM node:22-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy agent package files
|
|
COPY package.json ./
|
|
COPY langgraph.json ./
|
|
COPY tsconfig.json ./
|
|
COPY src/ ./src/
|
|
|
|
# Install dependencies
|
|
RUN npm install
|
|
|
|
EXPOSE 8123
|
|
|
|
CMD ["npx", "@langchain/langgraph-cli@1.2.1", "dev", "--host", "0.0.0.0", "--port", "8123", "--no-browser"]
|