nxtgauge-backend-rust/Dockerfile.superfast
Ashwin Kumar Sivakumar c85e6af22e feat(ai): complete AI plans/credits implementation and build tooling
- 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
2026-06-15 06:15:49 +05:30

38 lines
1.1 KiB
Text

# Super-fast Dockerfile using pre-compiled dependencies
# This requires building a base image first with: cargo chef cook
ARG SERVICE_NAME
# Stage 1: Use pre-built base with all dependencies cached
# Build base with: docker build -f Dockerfile.base -t registry.nxtgauge.com/nxtgauge-rust-base:latest .
FROM registry.nxtgauge.com/nxtgauge-rust-base:latest AS builder
ARG SERVICE_NAME
WORKDIR /app
# Copy ONLY the service source code (fast!)
COPY Cargo.toml Cargo.lock ./
COPY crates/ ./crates/
COPY apps/${SERVICE_NAME}/ ./apps/${SERVICE_NAME}/
# Build with optimizations for size and speed
ENV RUSTFLAGS="-C target-feature=+crt-static -C link-arg=-s -C opt-level=z"
ENV CARGO_NET_OFFLINE=true
# Build just this service - dependencies already compiled!
RUN cargo build --release \
--bin ${SERVICE_NAME} \
--target x86_64-unknown-linux-musl \
2>&1 | tail -20
# Stage 2: Minimal runtime
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"]