Update rust and alpine versions in Dockerfile

This commit is contained in:
Barry Pederson
2026-02-03 13:15:06 -08:00
parent 8e2f622811
commit 83d437c9ce
+2 -2
View File
@@ -1,6 +1,6 @@
################
##### Builder
FROM rust:1.88.0-slim AS builder
FROM rust:1.92.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.22.0 AS runtime
FROM alpine:3.23.3 AS runtime
# Copy application binary from builder image
COPY --from=builder /usr/src/target/x86_64-unknown-linux-musl/release/saslauthd /usr/local/bin