From 7ba8629e4727fee99c309e894c162559aa47d293 Mon Sep 17 00:00:00 2001 From: Barry Pederson Date: Sat, 12 Sep 2026 13:26:59 -0700 Subject: [PATCH] Bump Dockerfile to rust 1.98.1 and alpine 3.24.1 Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01Kmrgkpp9YBJ6AMaWYPPZuD --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 931c521..e875826 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ################ ##### Builder -FROM rust:1.92.0-slim AS builder +FROM rust:1.98.1-slim AS builder WORKDIR /usr/src @@ -20,7 +20,7 @@ RUN cargo build --package server --target x86_64-unknown-linux-musl --release ################ ##### Runtime -FROM alpine:3.23.3 AS runtime +FROM alpine:3.24.1 AS runtime # Copy application binary from builder image COPY --from=builder /usr/src/target/x86_64-unknown-linux-musl/release/saslauthd /usr/local/bin