mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
41 lines
1.1 KiB
Docker
41 lines
1.1 KiB
Docker
# Stage 1: Build Next.js frontend
|
|
FROM node:22-slim AS frontend
|
|
WORKDIR /app
|
|
COPY package.json ./
|
|
RUN npm install --legacy-peer-deps
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
# Stage 2: Build .NET agent
|
|
FROM mcr.microsoft.com/dotnet/sdk:9.0.312 AS agent-build
|
|
WORKDIR /agent
|
|
COPY agent/ ./
|
|
RUN dotnet publish -c Release -o /agent/publish
|
|
|
|
# Stage 3: Production image with Node.js + .NET runtime
|
|
FROM mcr.microsoft.com/dotnet/aspnet:9.0.14 AS runner
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
curl && \
|
|
curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
|
|
apt-get install -y nodejs && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
# Next.js build artifacts
|
|
COPY --from=frontend /app/.next ./.next
|
|
COPY --from=frontend /app/node_modules ./node_modules
|
|
COPY --from=frontend /app/package.json ./
|
|
COPY --from=frontend /app/public ./public
|
|
|
|
# .NET agent binary
|
|
COPY --from=agent-build /agent/publish /agent
|
|
|
|
# Entrypoint
|
|
COPY entrypoint.sh ./
|
|
RUN chmod +x entrypoint.sh
|
|
|
|
EXPOSE 10000
|
|
ENV NODE_ENV=production
|
|
CMD ["./entrypoint.sh"]
|