From ec1ba1dbf7d48662c5b663813bc20ce262e1b9ec Mon Sep 17 00:00:00 2001 From: j1nxie Date: Wed, 9 Oct 2024 17:47:31 +0700 Subject: [PATCH] build: install `ca-certificates` to ensure md requests go through --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index db83f46..dde2856 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN touch src/main.rs RUN cargo build --release FROM debian:bookworm-slim AS run -RUN apt update && apt install -y libssl3 +RUN apt update && apt install -y libssl3 ca-certificates WORKDIR /app COPY --from=build /app/target/release/mikisayaka . CMD [ "/app/mikisayaka" ]