From d6406a23ff67740eeedb5fedc96e680426e96ddd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Cluseau?= Date: Thu, 11 Jun 2026 12:16:30 +0200 Subject: [PATCH] ctr: build with --frozen --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f2b0dae..bdedf0a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ workdir /src copy . . run --mount=type=cache,id=novit-rs,target=/usr/local/cargo/registry \ --mount=type=cache,id=novit-rs-target,sharing=private,target=/src/target \ - RUSTFLAGS="-C target-feature=-crt-static" cargo install --path . --root /dist + RUSTFLAGS="-C target-feature=-crt-static" cargo install --frozen --path . --root /dist # ------------------------------------------------------------------------ from alpine:3.23.4 as system