From f8b9c32e0cf92bee7b600b87df0cb2af9997153a Mon Sep 17 00:00:00 2001 From: Mylloon Date: Wed, 12 Apr 2023 07:01:02 +0200 Subject: [PATCH] install ca-certificates --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3e5264b..e649245 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,10 @@ RUN cargo install --path . FROM debian:bullseye-slim + +RUN apt-get update +RUN apt-get install -y ca-certificates + RUN mkdir /app WORKDIR /app