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
+2 -2
View File
@@ -1,5 +1,5 @@
# Stage 1: Build binary # Stage 1: Build binary
FROM rust:1.85-bookworm AS builder FROM rust:latest AS builder
WORKDIR /app WORKDIR /app
COPY . . COPY . .
RUN cargo build --release RUN cargo build --release
@@ -7,4 +7,4 @@ RUN cargo build --release
# Stage 2: Final minimal execution layer # Stage 2: Final minimal execution layer
FROM debian:bookworm-slim FROM debian:bookworm-slim
WORKDIR /app WORKDIR /app
ENTRYPOINT ["/app/huffman-compression-rust"] ENTRYPOINT ["/app/huffman-compression-rust"]