agnosai 1.0.2

Provider-agnostic AI orchestration framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Build stage
FROM rust:1.89-bookworm AS builder
WORKDIR /build
COPY . .
RUN cargo build --release --features full --bin agnosai-server

# Runtime stage
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
    ca-certificates curl libssl3 && \
    rm -rf /var/lib/apt/lists/*
COPY --from=builder /build/target/release/agnosai-server /usr/local/bin/agnosai-server
EXPOSE 8080
ENV RUST_LOG=info
ENTRYPOINT ["agnosai-server"]