21 lines
592 B
Docker
21 lines
592 B
Docker
FROM rust:1.85 AS chef
|
|
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
|
|
RUN cargo install cargo-chef --locked --version 0.1.71
|
|
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
|
|
|
|
COPY . .
|
|
RUN cargo build --release
|
|
|
|
FROM gcr.io/distroless/cc-debian12:nonroot AS runtime
|
|
COPY --from=builder /app/target/release/lldap-controller /lldap-controller
|
|
COPY --from=builder /app/target/release/crdgen /crdgen
|
|
CMD ["/lldap-controller"]
|