mirror of
https://github.com/gophish/gophish
synced 2024-11-12 23:37:11 +00:00
Install ca-certificates on Docker image (#2888)
The ca-certificates package is necessary for Gophish to connect to webhooks using HTTPS.
This commit is contained in:
parent
d2efb18ef1
commit
04f0fb6dfd
1 changed files with 1 additions and 1 deletions
|
@ -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/*
|
||||
|
||||
|
|
Loading…
Reference in a new issue