From 84b26d4d684b3045a40f2ccc94490c0eed5c36bc Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Tue, 31 Mar 2026 08:12:44 +0100 Subject: [PATCH] Add curl? --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index 8b7a41b..660deff 100644 --- a/Containerfile +++ b/Containerfile @@ -5,5 +5,6 @@ COPY . . RUN cargo install --path . FROM debian:trixie-slim +RUN apt-get update && apt-get install -y libcurl4-openssl-dev && rm -rf /var/lib/apt/lists/* COPY --from=builder /usr/local/cargo/bin/saluki /usr/local/bin/saluki ENTRYPOINT ["saluki"]