From 4e8aa1614efad2b2bbc7e2dfe0f0bd076c1b7492 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 19 Mar 2026 10:45:51 +0000 Subject: [PATCH] fix: pin builder to rust:1.77-slim-bookworm to match runtime glibc rust:1.77-slim has drifted to a newer Debian base with glibc 2.39, but debian:bookworm-slim only has glibc 2.36, causing a GLIBC_2.39 not found error at runtime. Pinning to the explicit bookworm variant keeps both stages on the same glibc version. --- infra/Dockerfile.server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/Dockerfile.server b/infra/Dockerfile.server index 0d71f48..4856aa3 100644 --- a/infra/Dockerfile.server +++ b/infra/Dockerfile.server @@ -1,5 +1,5 @@ # ── Build stage ─────────────────────────────────────────────────────────────── -FROM rust:1.77-slim AS builder +FROM rust:1.77-slim-bookworm AS builder WORKDIR /build