Skip to content

Commit 55e10d2

Browse files
committed
fix: use Ubuntu 24.04 for newer GLIBC compatibility
Rust 1.89 builds require GLIBC 2.39 which is not available in Debian bookworm
1 parent 4488990 commit 55e10d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ COPY crates/ ./crates/
1212
# Build release binary
1313
RUN cargo build --release --bin redisctl
1414

15-
# Runtime stage - Debian for compatibility
16-
FROM debian:bookworm-slim
15+
# Runtime stage - Ubuntu for newer GLIBC
16+
FROM ubuntu:24.04
1717

1818
# Install runtime dependencies
1919
RUN apt-get update && apt-get install -y \

0 commit comments

Comments
 (0)