Update Rust base image to latest version
This commit is contained in:
+2
-2
@@ -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"]
|
||||
ENTRYPOINT ["/app/huffman-compression-rust"]
|
||||
|
||||
Reference in New Issue
Block a user