Skip to content

Commit 871ff43

Browse files
committed
fix: [#317] Update deployer runtime base image from bookworm-slim to trixie-slim
The build stage was updated to rust:trixie (GLIBC 2.39), but the runtime stage was still using debian:bookworm-slim (GLIBC 2.36/2.37). This caused GLIBC version mismatch errors when running the container. Updated runtime FROM to debian:trixie-slim to ensure compiled binary runs with compatible GLIBC version.
1 parent 262aeb8 commit 871ff43

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker/deployer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ RUN mkdir -p /app/bin/ && cp /build/src/target/release/torrust-tracker-deployer
6363
## =============================================================================
6464
## Runtime Image
6565
## =============================================================================
66-
FROM debian:bookworm-slim AS runtime
66+
FROM debian:trixie-slim AS runtime
6767

6868
# Metadata
6969
LABEL org.opencontainers.image.title="Torrust Tracker Deployer"

0 commit comments

Comments
 (0)