Update Docker rust build image from 1.85.0 to 1.88.0, and runtime alpine from 3.21.3 to 3.22.0

This commit is contained in:
Barry Pederson
2025-07-01 20:43:09 -07:00
parent d9da12a6de
commit c0333deb9c
+2 -2
View File
@@ -1,6 +1,6 @@
################
##### Builder
FROM rust:1.85.0-slim AS builder
FROM rust:1.88.0-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.21.3 AS runtime
FROM alpine:3.22.0 AS runtime
# Copy application binary from builder image
COPY --from=builder /usr/src/target/x86_64-unknown-linux-musl/release/saslauthd /usr/local/bin