From f23eb0643a6655658010fcd9e55fa552cf4a0f52 Mon Sep 17 00:00:00 2001 From: Gregory Campbell <15807475+gjcampbell777@users.noreply.github.com> Date: Fri, 19 Jun 2026 13:55:02 -0400 Subject: [PATCH] Update Rust base image to latest version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d08af85..aed88b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 @@ -7,4 +7,4 @@ RUN cargo build --release # Stage 2: Final minimal execution layer FROM debian:bookworm-slim WORKDIR /app -ENTRYPOINT ["/app/huffman-compression-rust"] \ No newline at end of file +ENTRYPOINT ["/app/huffman-compression-rust"]