symphony-cli 0.1.0

Orchestration engine for coding agents — polls issue trackers, creates workspaces, and runs AI coding sessions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Stage 1: Build
FROM rust:1.85-slim AS builder
WORKDIR /app
COPY Cargo.toml Cargo.lock ./
COPY crates/ crates/
COPY src/ src/
RUN cargo build --release

# Stage 2: Runtime
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
    ca-certificates git curl \
    && rm -rf /var/lib/apt/lists/*
COPY --from=builder /app/target/release/symphony /usr/local/bin/symphony
WORKDIR /workspace
ENTRYPOINT ["symphony"]
CMD ["WORKFLOW.md"]