From 3d528fee317592baf2ad78ceb98541d65f366897 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 8 Sep 2026 06:52:17 +0000 Subject: [PATCH] Pin dependencies --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1f32d04d..6760e72d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN pnpm install --ignore-scripts --frozen-lockfile COPY web/ . RUN pnpm build -FROM rust:1 AS chef +FROM rust:1@sha256:620dbcd124499c59e2406d3741574b5c5838cf9eb9656f0c3a03948f79b02959 AS chef WORKDIR /build @@ -38,7 +38,7 @@ COPY proto proto RUN cargo install --locked --path . --root /build # run -FROM debian:13-slim AS runtime +FROM debian:13-slim@sha256:d7e12182ce18b85b93007c1dedf31f2d29e01ccf3182cc4017c709b6259bc132 AS runtime RUN apt-get update -y && apt-get upgrade -y && \ apt-get install --no-install-recommends -y ca-certificates libssl-dev lsb-release && \ rm -rf /var/lib/apt/lists/*