From 4a389af5171d4f4809a6db869033ef317c7fb831 Mon Sep 17 00:00:00 2001 From: Prithvish Baidya Date: Fri, 3 Oct 2025 16:52:19 +0530 Subject: [PATCH] pin to trixie --- server/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/Dockerfile b/server/Dockerfile index f6e89ca..11c65a1 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,5 +1,5 @@ # Use cargo chef for dependency caching -FROM lukemathwalker/cargo-chef:latest-rust-1 AS chef +FROM lukemathwalker/cargo-chef:latest-rust-1-trixie AS chef WORKDIR /app # Install ssh and git for GitHub Actions environment @@ -26,7 +26,7 @@ COPY . . RUN --mount=type=ssh cargo build --release --bin thirdweb-engine # Runtime stage -FROM debian:bookworm-slim AS runtime +FROM debian:trixie-slim AS runtime # Install required system dependencies RUN apt-get update && apt-get install -y \