From 68604e6e3c938fe2c32b6e31b2c67f68624d4d99 Mon Sep 17 00:00:00 2001 From: Gregory Campbell <15807475+gjcampbell777@users.noreply.github.com> Date: Fri, 19 Jun 2026 16:43:12 -0400 Subject: [PATCH] Add curl installation to Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 776bc1c..768935b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ RUN cargo build --release # Stage 2: Final minimal execution layer FROM debian:bookworm-slim +RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* WORKDIR /app COPY --from=builder /app/target/release/huffman-compression-rs /app/huffman-compression-rust -ENTRYPOINT ["/app/huffman-compression-rust"] \ No newline at end of file +ENTRYPOINT ["/app/huffman-compression-rust"]