chore: Update dependencies
Some checks failed
Build and deploy / build (push) Failing after 13m11s

This commit is contained in:
2025-12-22 23:36:58 +01:00
parent f03ab650fd
commit 1fd3d4d3a9
7 changed files with 489 additions and 484 deletions

View File

@@ -1,4 +1,4 @@
FROM rust:1.86 AS base
FROM rust:1.92 AS base
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
RUN cargo install cargo-chef --locked --version 0.1.71 && \
cargo install cargo-auditable --locked --version 0.6.6
@@ -17,7 +17,7 @@ ARG RELEASE_VERSION
ENV RELEASE_VERSION=${RELEASE_VERSION}
RUN cargo auditable build --release
FROM gcr.io/distroless/cc-debian12:nonroot AS runtime
FROM gcr.io/distroless/cc-debian13:nonroot AS runtime
COPY --from=builder /app/target/release/authelia-controller /authelia-controller
COPY --from=builder /app/target/release/crdgen /crdgen
CMD ["/authelia-controller"]