Update Rust base image to latest version

This commit is contained in:
Gregory Campbell
2026-06-19 13:55:02 -04:00
committed by GitHub
parent d9d50d8d9a
commit f23eb0643a
+1 -1
View File
@@ -1,5 +1,5 @@
# Stage 1: Build binary
FROM rust:1.85-bookworm AS builder
FROM rust:latest AS builder
WORKDIR /app
COPY . .
RUN cargo build --release