mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
0d9ead7556
Replace `RUN curl -LsSf https://astral.sh/uv/install.sh | sh` across all starter Dockerfiles with `COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /usr/local/bin/`. The curl|sh form has a pipe-swallow latent bug: when astral.sh returns a 5xx, curl fails but `sh` gets no stdin and exits 0, so the layer "succeeds" with no uv binary. A later `RUN uv sync` then crashes with `uv: not found` (exit 127). This already bit the agno starter today (run 24809910399) when astral.sh had a transient outage; upstream recovered on its own so this is latent-bug cleanup, not a hotfix. Using the official uv image is uv's own recommended pattern: it's cache-friendly, network-free at build time, and sidesteps the pipe failure mode entirely. Scope: all 20 Dockerfiles under examples/integrations/*/Dockerfile, examples/integrations/*/docker/Dockerfile.agent, and examples/showcases/scene-creator/agent/Dockerfile. Verified locally: `docker build -f docker/Dockerfile.agent ./agent` for agno succeeds against the new pattern.
72 lines
2.4 KiB
Docker
72 lines
2.4 KiB
Docker
# Stage 1: Install Node dependencies and build the frontend + BFF
|
|
FROM node:20-slim AS frontend
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json package-lock.json ./
|
|
COPY apps/app/package.json ./apps/app/
|
|
COPY apps/agent/package.json ./apps/agent/
|
|
COPY apps/bff/package.json ./apps/bff/
|
|
RUN npm ci --ignore-scripts
|
|
|
|
COPY apps/app/ ./apps/app/
|
|
COPY apps/bff/ ./apps/bff/
|
|
|
|
ENV NODE_OPTIONS="--max-old-space-size=4096"
|
|
RUN npm run build --workspace @repo/app
|
|
RUN npm run build --workspace @repo/bff
|
|
|
|
# Stage 2: Production image with Python + Node
|
|
FROM python:3.12.10-slim AS runner
|
|
|
|
# Install Node.js 20 + uv
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends curl ca-certificates && \
|
|
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
|
|
apt-get install -y --no-install-recommends nodejs && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install uv by copying from the official image (avoids curl|sh pipe-swallow bug
|
|
# where a 5xx on astral.sh silently produces an exit-0 layer with no uv binary).
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /usr/local/bin/
|
|
|
|
ENV PATH="/root/.local/bin:$PATH"
|
|
|
|
WORKDIR /app
|
|
|
|
# Install Python deps — EXCLUDING langgraph-cli and langgraph-api
|
|
# (they need Docker-in-Docker which Railway doesn't provide)
|
|
# Instead serve via ag-ui-langgraph + copilotkit (same protocol, no Docker needed)
|
|
COPY apps/agent/ ./apps/agent/
|
|
# Install ag-ui-langgraph FIRST at pinned version (before copilotkit can override it)
|
|
RUN uv pip install --system "ag-ui-langgraph[fastapi]==0.0.22" && \
|
|
uv pip install --system --no-deps "copilotkit==0.1.78" && \
|
|
uv pip install --system "partialjson>=0.0.8,<0.0.9" "toml>=0.10.2,<0.11.0" && \
|
|
uv pip install --system \
|
|
"langchain==1.0.1" \
|
|
"langchain-openai>=1.1.0" \
|
|
"langchain-anthropic>=1.3.4" \
|
|
"langgraph==1.0.5" \
|
|
"langsmith>=0.4.49" \
|
|
"openai>=1.68.2,<2.0.0" \
|
|
"python-dotenv>=1.0.0,<2.0.0" \
|
|
"fastapi>=0.115.5,<1.0.0" \
|
|
"uvicorn>=0.29.0,<1.0.0"
|
|
|
|
# serve.py adapts the original agent for Docker (no langgraph-cli needed)
|
|
COPY serve.py ./
|
|
|
|
# Copy frontend build and the BFF runtime.
|
|
COPY --from=frontend /app/node_modules ./node_modules
|
|
COPY --from=frontend /app/apps/app/dist ./apps/app/dist
|
|
COPY --from=frontend /app/apps/app/server.mjs ./apps/app/server.mjs
|
|
COPY --from=frontend /app/apps/bff/dist ./apps/bff/dist
|
|
|
|
COPY entrypoint.sh ./
|
|
RUN chmod +x entrypoint.sh
|
|
|
|
EXPOSE 3000
|
|
ENV NODE_ENV=production
|
|
|
|
CMD ["./entrypoint.sh"]
|