mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
453097ff18
Flatten langgraph-python, langgraph-js, and mcp-apps starters so npm install && npm run dev works out of the box. Replace Turborepo with concurrently, move apps/* to root, update Dockerfiles, READMEs, and entrypoints. Also remove stray pnpm-lock.yaml from a2a-a2ui and ms-agent-framework-dotnet starters.
19 lines
406 B
Docker
19 lines
406 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", "dev", "--host", "0.0.0.0", "--port", "8123", "--no-browser"]
|