From 04f0fb6dfd9498f68fed145e1c3fbe515697cf0a Mon Sep 17 00:00:00 2001 From: Philipp Date: Wed, 23 Aug 2023 03:50:03 +0200 Subject: [PATCH] Install ca-certificates on Docker image (#2888) The ca-certificates package is necessary for Gophish to connect to webhooks using HTTPS. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c8869be9..63af4e12 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ FROM debian:stable-slim RUN useradd -m -d /opt/gophish -s /bin/bash app RUN apt-get update && \ - apt-get install --no-install-recommends -y jq libcap2-bin && \ + apt-get install --no-install-recommends -y jq libcap2-bin ca-certificates && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*