lekton-sync 0.14.3

CLI tool to sync markdown documents to a Lekton instance
FROM rust:1.93-bookworm AS chef

RUN cargo install cargo-chef --locked

WORKDIR /app

FROM chef AS planner
COPY . .
RUN cargo chef prepare --recipe-path recipe.json

FROM chef AS builder
COPY --from=planner /app/recipe.json recipe.json
RUN cargo chef cook --release --recipe-path recipe.json --package lekton-sync

COPY . .
RUN cargo build --release --package lekton-sync

FROM gcr.io/distroless/cc-debian12:nonroot AS runtime

WORKDIR /app

COPY --from=builder /app/target/release/lekton-sync /usr/local/bin/lekton-sync

ENTRYPOINT ["/usr/local/bin/lekton-sync"]
CMD ["--help"]

FROM debian:bookworm-slim AS ci

RUN apt-get update \
    && apt-get install -y --no-install-recommends ca-certificates \
    && rm -rf /var/lib/apt/lists/*

WORKDIR /app

COPY --from=builder /app/target/release/lekton-sync /usr/local/bin/lekton-sync

ENTRYPOINT ["/usr/local/bin/lekton-sync"]
CMD ["--help"]