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.
This commit is contained in:
parent
3d35e220e4
commit
4e8aa1614e
1 changed files with 1 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
# ── Build stage ───────────────────────────────────────────────────────────────
|
# ── Build stage ───────────────────────────────────────────────────────────────
|
||||||
FROM rust:1.77-slim AS builder
|
FROM rust:1.77-slim-bookworm AS builder
|
||||||
|
|
||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue