Skip to content

Commit

Permalink
Install ca-certificates on Docker image (gophish#2888)
Browse files Browse the repository at this point in the history
The ca-certificates package is necessary for Gophish to connect to webhooks using HTTPS.
  • Loading branch information
wmnnd authored Aug 23, 2023
1 parent d2efb18 commit 04f0fb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*

Expand Down

0 comments on commit 04f0fb6

Please sign in to comment.