From 5af5cf696bf97d3dc65833c5e5520c1d92707302 Mon Sep 17 00:00:00 2001 From: Luca P Date: Mon, 14 Mar 2022 11:42:16 +0000 Subject: [PATCH] Install ca-certificates in the runtime layer --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9d4ac98..4f5f0eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN cargo build --release --bin zero2prod FROM debian:bullseye-slim AS runtime WORKDIR /app RUN apt-get update -y \ - && apt-get install -y --no-install-recommends openssl \ + && apt-get install -y --no-install-recommends openssl ca-certificates \ # Clean up && apt-get autoremove -y \ && apt-get clean -y \