- Add AI plans, credits, model routing, LiteLLM client, and orchestrator services - Add AI management endpoints, auto-apply/auto-request handlers, and log endpoints - Add cron jobs for daily action reset and monthly credit reset - Add AI credit purchase flow in payments service - Add ai_credit_packages migration with seed data - Update Dockerfile build tooling across services
47 lines
1.5 KiB
Text
47 lines
1.5 KiB
Text
# Multi-service optimized Dockerfile with layer caching
|
|
# Usage: docker build --build-arg SERVICE_NAME=gateway -t nxtgauge-gateway .
|
|
|
|
# Stage 1: Base builder with dependencies cached
|
|
FROM registry.nxtgauge.com/rust:alpine AS chef
|
|
RUN apk add --no-cache musl-dev pkgconfig openssl-dev ca-certificates && \
|
|
rustup target add x86_64-unknown-linux-musl && \
|
|
cargo install cargo-chef
|
|
WORKDIR /app
|
|
|
|
# Stage 2: Planner - analyzes dependencies
|
|
FROM chef AS planner
|
|
COPY Cargo.toml Cargo.lock ./
|
|
COPY crates/ ./crates/
|
|
COPY apps/ ./apps/
|
|
RUN cargo chef prepare --recipe-path recipe.json
|
|
|
|
# Stage 3: Builder - compiles dependencies separately (cached layer!)
|
|
FROM chef AS builder
|
|
ARG SERVICE_NAME
|
|
|
|
# Copy dependency recipe
|
|
COPY --from=planner /app/recipe.json recipe.json
|
|
|
|
# Build dependencies (cached if recipe.json unchanged)
|
|
RUN cargo chef cook --release --target x86_64-unknown-linux-musl --recipe-path recipe.json
|
|
|
|
# Copy source and build specific service
|
|
COPY Cargo.toml Cargo.lock ./
|
|
COPY crates/ ./crates/
|
|
COPY apps/ ./apps/
|
|
|
|
ENV RUSTFLAGS='-C target-feature=+crt-static'
|
|
RUN cargo build --release --bin ${SERVICE_NAME} --target x86_64-unknown-linux-musl
|
|
|
|
# Stage 4: Runtime - scratch image with local builder-provided certificates
|
|
FROM scratch
|
|
ARG SERVICE_NAME
|
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
COPY --from=builder /app/target/x86_64-unknown-linux-musl/release/${SERVICE_NAME} /app/service
|
|
|
|
USER 65532:65532
|
|
|
|
EXPOSE 8000
|
|
|
|
ENTRYPOINT ["/app/service"]
|