Bump Dockerfile to rust 1.98.1 and alpine 3.24.1

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Kmrgkpp9YBJ6AMaWYPPZuD
This commit is contained in:
2026-09-12 13:26:59 -07:00
co-authored by Claude Fable 5.1
parent 2919037d3b
commit 7ba8629e47
+2 -2
View File
@@ -1,6 +1,6 @@
################ ################
##### Builder ##### Builder
FROM rust:1.92.0-slim AS builder FROM rust:1.98.1-slim AS builder
WORKDIR /usr/src WORKDIR /usr/src
@@ -20,7 +20,7 @@ RUN cargo build --package server --target x86_64-unknown-linux-musl --release
################ ################
##### Runtime ##### Runtime
FROM alpine:3.23.3 AS runtime FROM alpine:3.24.1 AS runtime
# Copy application binary from builder image # Copy application binary from builder image
COPY --from=builder /usr/src/target/x86_64-unknown-linux-musl/release/saslauthd /usr/local/bin COPY --from=builder /usr/src/target/x86_64-unknown-linux-musl/release/saslauthd /usr/local/bin