rustvani 0.2.8

Voice AI framework for Rust — real-time speech pipelines with STT, LLM, TTS, and Dhara conversation flows
# Builder
FROM fedora:40 AS builder

WORKDIR /app
COPY Cargo.toml Cargo.lock* ./
COPY src/ src/

RUN dnf install -y gcc gcc-c++ make pkg-config openssl-devel && \
    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable && \
    dnf clean all
ENV PATH="/root/.cargo/bin:${PATH}"

RUN cargo build --release --bin dhara-pizza

# Runtime
FROM fedora:40

RUN dnf install -y ca-certificates openssl && dnf clean all

COPY --from=builder /app/target/release/dhara-pizza /usr/local/bin/dhara-pizza
ENV PORT=8080
EXPOSE 8080

CMD ["dhara-pizza"]