From 29c83067ae3a1f03b68d87c2e07230e2c000753d Mon Sep 17 00:00:00 2001 From: Syfaro Date: Fri, 3 Jan 2020 04:07:41 -0600 Subject: [PATCH] Add ca-certificates. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 29f904e..881d575 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,5 +10,5 @@ EXPOSE 8080 WORKDIR /app COPY --from=builder /src/langs ./langs COPY --from=builder /bin/foxbot /bin/foxbot -RUN apt-get update -y && apt-get install libssl-dev -y +RUN apt-get update -y && apt-get install libssl-dev ca-certificates -y CMD ["/bin/foxbot"]