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"]